스터디) 2023 정처기 실기 1회 프로그래밍 풀기
·
정보처리기사
2023 정처기 실기 1회 정리https://chobopark.tistory.com/372 문제 복원 블로그문제1. static 변수, 지역 변수class Static{ public int a = 20; static int b = 0;} public class Main{ public static void 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); Sy..
스터디) 2024 정처기 실기 2회 프로그래밍 풀기
·
정보처리기사
2024 정처기 실기 2회 정리https://chobopark.tistory.com/483#google_vignette 문제 복원 블로그문제1. 객체class Main { public static void main(String[] args) { int[] a = new int[]{1, 2, 3, 4}; int[] b = new int[]{1, 2, 3, 4}; int[] c = new int[]{1, 2, 3}; check(a, b); check(a, c); check(b, c); } public static void check(int[] a, int[] b) { if (a==b) ..
스터디) 2024 정처기 실기 1회 프로그래밍 풀기
·
정보처리기사
2024 정처기 실기 1회 정리https://chobopark.tistory.com/476 문제 복원 블로그문제1. 싱글톤 패턴class Connection { private static Connection _inst = null; private int count = 0; static public Connection get() { if(_inst == null) { _inst = new Connection(); return _inst; } return _inst; } public void count() { count++; } public int getCo..
정처기 스터디(숙제) 문제 출제1
·
정보처리기사
1. 보기에 주어진 주요기능을 가진 프로토콜은?TripleDES, AES 같은 대칭키 암호화 알고리즘 제공연결 설정 과정에서 서버와 클라이언트 간에 신뢰할 수 있도록 인증 사용안전한 해시 알고리즘을 사용하여 메시지 인증코드 생성 정답 : 더보기SSL / TLS 2. 디자인 패턴 중 구조 패턴에 해당 하는 것을 모두 고르시오.ⓐ Proxy     ⓑVisitor    ⓒ Builder    ⓓAdapter    ⓔ State 정답 : 더보기ⓐ, ⓓ 3. 네트워크 보안 솔루션이 아닌 것은?ⓐ VPN     ⓑ IPS    ⓒ NAC    ⓓ DRM    ⓔ UTM 정답 :더보기 ⓓ 4. 통합 테스트 방식에 대한 내용이다. ( ) 괄호에 들어갈 알맞은 모듈을 순서대로 적으시오.하향식 통합 테스트는 하위 모듈에..