7/31(금): 합격확인 및 자격증 신청 , 비용 5380원 결제

8/3(월): 검토 및 발급

8/5(수): 우체국 등기 발송

8/6(목): 우체국 등기 수령

Posted by Lumasca
,

재수끝에 정보보안기사 15회 실기에 합격했다.

시험을 보고나서 Best case가 60점정도로 생각했는데  점수가 딱 60.0 이다.

채점위원이 합격시켜줄려고 부분점수를 잘 준것으로 보인다. 

 

공부할때 교재는 알기사 2020년 정보보안기사 실기+기출문제집 만 사용했다.

실기접수하고 보니 14회때 경험에 교재없이는 합격하기 어려울듯 보여서 바로 구매했다.

교재는 구매하길 잘했다. 시험에 도움이 많이 되었다.

한달 정도 교재 1회 정독하고 잘 모르는거 위주로 집중 학습했다.

 

실기 작성 답안: 

 

1번 XSS, document.write
2번 robot.txt
3번 land attack, smurf(icmp flooding), tcp syn flooding
4번 틀림
5번 민감정보, 고유식별정보, 내부관리계획
6번 (X), snort 틀림
7번 틀림
8번 (X), KISA, ISMS-P 인증위원회 
9번 위험관리
10번 L2TP, PPTP, IPSEC

11번 IPsec esp esp header esp auth 
1)New IP H ESP H IP H TCP H Data ESP trailer EST auth
2) IP H ~ ESP trailer
3)ESP H~ESP trailer

12번 

1)실행후 삭제

2)(X)

3) pacct?


13번
1)영문 대소문자, 숫자, 특수문자 조합해서 3가지 사용시 8자리, 2가지 사용시 10자리 
2)생년월일 사용금지 
3)일련번호 추측가능한 정보 사용금지

14 번 패스
15번

1)slow http post dos

2)원리설명 

3)웹서버 타임아웃 설정 변수 3가지 적음 

16번 

개인정보수집시 주민등록번호
개인정보 수집 영구보관
제3자 제공 기관
개인정보수집 3자제공시 불이익

Posted by Lumasca
,

dataq.or.kr

등급 시험명 접수기간 환불마감 수험표발급 시험일 결과발표

전문가

개발자

제36회 SQL 전문가/개발자 자격검정 01.10 ~ 03.16 ~04.10 04.03 ~ 04.11 04.11(토) 취소 05.12
제37회 SQL 전문가/개발자 자격검정 03.16 ~ 05.17 ~05.30 05.22 ~ 05.31 05.31(일) 06.30
제38회 SQL 전문가/개발자 자격검정 06.08 ~ 08.10 ~08.19 08.28 ~ 09.05 09.05(토) 10.06
제39회 SQL 전문가/개발자 자격검정 09.14 ~ 11.02 ~11.11 11.20 ~ 11.29 11.29(일) 12.29

'IT 자격증 > SQLP,SQLD' 카테고리의 다른 글

38회 SQLD 합격후기  (0) 2020.10.06
Posted by Lumasca
,

음..성능이..

class MinStack {
    
    /** initialize your data structure here. */
    class Node{
        int val;
        Node next;
        
        Node(int val){
            this.val = val;
            this.next = null;
        }
    }
    
    Node top = null;
    public MinStack() {
        
    }
    
    public void push(int x) {
        Node node = new Node(x);
        node.next = top;        
        top = node;
    }
    
    public void pop() {
        top = top.next;
    }
    
    public int top() {
        return top.val;        
    }
    
    public int getMin() {
        Node node = top;
        int min = node.val;
        while(node != null){
            if(min > node.val){
                min = node.val;
            }
            node = node.next;
        }
        return min;
    }
}

'개발 > CodingTest' 카테고리의 다른 글

LeetCode - Shuffle the array  (0) 2020.06.26
Hackerrank - Utopian Tree  (0) 2020.06.25
Hacckerrank - The Hurdle Race  (0) 2020.06.25
Hacckerrank - Halloween Sale  (0) 2020.06.25
Hackerrank - Prime Checker  (0) 2020.06.05
Posted by Lumasca
,
class Solution {
    public int[] shuffle(int[] nums, int n) {
        int len = nums.length;
        int[] res = new int[len];
        int resIndex = 0;
        for(int i=0; i < len/2; i++){//배열 중간까지만 진행
            res[resIndex] = nums[i];//첫번째값
            res[++resIndex] = nums[i+n];//두번째값은 n만큼 더한 위치
            resIndex++;
        }
        return res;
    }
}

'개발 > CodingTest' 카테고리의 다른 글

LeetCode - Min Stack  (0) 2020.06.26
Hackerrank - Utopian Tree  (0) 2020.06.25
Hacckerrank - The Hurdle Race  (0) 2020.06.25
Hacckerrank - Halloween Sale  (0) 2020.06.25
Hackerrank - Prime Checker  (0) 2020.06.05
Posted by Lumasca
,
    static int utopianTree(int n) {
        
        int h = 0;
        
        for(int i = 0; i <= n; i++){
            if(i==0){
                h = 1;
                continue;
            }
            if(i % 2 == 1){
                h *= 2;
            }else{
                h += 1;
            }
        }
        return h;
    }

'개발 > CodingTest' 카테고리의 다른 글

LeetCode - Min Stack  (0) 2020.06.26
LeetCode - Shuffle the array  (0) 2020.06.26
Hacckerrank - The Hurdle Race  (0) 2020.06.25
Hacckerrank - Halloween Sale  (0) 2020.06.25
Hackerrank - Prime Checker  (0) 2020.06.05
Posted by Lumasca
,

 

    static int hurdleRace(int k, int[] height) {
        int n = 0;
        for(int i =0; i < height.length; i++){
            int r = height[i] - k;
            if(r > 0){
                if(n < r){
                    n = r;
                }
            }
        }
        return n;

    }

'개발 > CodingTest' 카테고리의 다른 글

LeetCode - Shuffle the array  (0) 2020.06.26
Hackerrank - Utopian Tree  (0) 2020.06.25
Hacckerrank - Halloween Sale  (0) 2020.06.25
Hackerrank - Prime Checker  (0) 2020.06.05
프로그래머스 - 기능개발  (0) 2020.06.03
Posted by Lumasca
,
 static int howManyGames(int p, int d, int m, int s) {
        // Return the number of games you can buy
        int salePrice = p;//세일 시작가격
        int count = 0;//구매한 게임수
        while(s >= salePrice ){
            count++;//게임개수증가
            s -= salePrice;//남은돈
            //System.out.println("Buy salePrice="+salePrice+", count="+count+", s="+s);
            if(salePrice > m){
                salePrice -= d;//세일 적용
            }
            if(salePrice < m){//최저세일가 보장
                salePrice = m;
            }           
        }
        return count;
    }

'개발 > CodingTest' 카테고리의 다른 글

Hackerrank - Utopian Tree  (0) 2020.06.25
Hacckerrank - The Hurdle Race  (0) 2020.06.25
Hackerrank - Prime Checker  (0) 2020.06.05
프로그래머스 - 기능개발  (0) 2020.06.03
프로그래머스 - 탑  (0) 2020.06.03
Posted by Lumasca
,