정보처리기사 최신 5년 실기 족보 문제
개요 정보처리기사 자격증 시험은 다른 자격증 시험들과 비교해봐도 기출문제의 비중이 높은 시험입니다. 전체 문제중 많으면 20%, 평균 10%내외로 기출문제에서 문제들이 출제됩니다. 그러므로 이 자격증을 준비할 경우 기출문제를 풀어보는게 가장 중요하다고 볼 수 있습니다. 아래는 최근 정보처리기사 자격증 기출문제입니다. 정보처리기사 문제 문제모음 1. 아래 자바 코드에서 출력되는 값을 작성하시오. 1234567891011121314151617181920212223 class Static{publicint a =20;staticint b =0;}publicclass Main{publicstaticvoid main(String[] args) {int a; a =10; Static.b = a; Static st =new Static();System.out.println(Static.b++);System.out.println(st.b);System.out.println(a);System.out.print(st.a); }}Colored by Color Scripter cs 2. … Read more