실기는 필기보다 어렵다는 소리를 많이 들어서 필기 발표가 나자마자 바로 공부를 하였습니다. 우선 실기가 내년에 완전히 바뀌어 버린다는 소리를 들었어요... 본론으로 들어가자면 실기도 기출이라고 생각됩니다. ( 자세한 이야기는 뒤쪽에 해드리겠습니다.) 우선 1과목 알고리즘 (25점) - 먼저 이부분은 비전공자분들이 접하기 조금은 어려운 부분이라고 생각이 됩니다. - 순서도 부분은 매번 나오는 유형만 나오고 있는 추세라 이해가 잘 안되신다면 아예 외워버리는 것도 나쁘진 않다고 생각합니다. (목적은 합격이므로) - c언어와 java부분은 시나공 문제들을 풀어보시는 것을 추천드립니다. (시험은 시나공보다 쉽게 출제) 2과목 데이터베이스 (25점) - 내용이 생각보다 많은데 이 부분은 제가 따로 퀴즐렛으로 만들 ..
우선 자격증에 대해 간단하게 설명을 드리자면 1급은 민간자격증이고 2급은 국가공인 민간자격입니다. 시험 일정으론 1급은 연 2회, 2급은 연 4회가 있다고 되어있네여 자세한 시험일정->(http://www.icqa.or.kr/cn/page/network) (단체로 응시하게 되면 상시도 있다고 합니다!!(http://www.icqa.or.kr/cn/page/org) 저는 2급 필기를 2월 17일에 응시하였고, 실기를 3월 31일에 응시 하였고필기와 실기 모두 1차에 합격하였고요 간단하게 제가 학습한 팁을 알려드리려고 합니다. 우선 필기로는 CBT라는 사이트로 학습을 하였구요 소요시간은 대략 하루 정도 걸렸던 것 같습니다.- 넉넉하게 3일 정도 잡으시는 거 추천드립니다. https://www.comcbt.c..
라즈베리 파이를 이용한 PIR센서 (모션감지) 센서 코드1 #include #include const int pinPir = 24; int main(void) { wiringPiSetupGpio(); pinMode(pinPir, INPUT); while(1) { if(!digitalRead(pinPir)) { printf("Detected\n"); delay(500); } } return 0; } 모션이 감지되면 0.5초 마다 Detected란 문자를 찍어낸다. 라즈베리 파이를 이용한 PIR센서 (모션감지) 센서 코드2 #include #include const int pinPir = 24; const int aPinLed[2] = {21,20}; int main(void) { wiringPiSetupG..
도서관 도서 관리 프로그래밍 #include #include struct book { char name[10]; char title[100]; int page; }typedef book; int main() { book bk[10] = {0}; int index = 0; int select; int del_index; int i; while(1) { printf("\t-------------------------------------------------\n"); printf("\t|\t\t\t\t\t\t|\n\t|입력[0] 삭제[1] 수정[2] 출력[3] 종료[-1]\t|\n"); printf("\t|원하는 동작을 입력해 주세요 : "); scanf("%d", &select); if(select == ..
c언어 연결리스트 노드 삽입 삭제 #include #include #include #define TRUE 1 #define FALSE 0 #define ASC 0 #define DSC 1 typedef struct fruit{ int id; char name[20]; int price; struct fruit *link; }Fruit; int addHead(Fruit **head,int id,char *name,int price); int removeHead(Fruit **head); int removeAll(Fruit **head); void printList(Fruit *head); int getId(Fruit *head,char *name); int getPosition(Fruit *head,int..
1. 비쥬얼 스튜디오 파일을 제공하는 MICROSOFT 공식 사이트 접속 https://visualstudio.microsoft.com/ko/downloads/?rr=https%3A%2F%2Fdocs.microsoft.com%2Fko-kr%2Fvisualstudio%2Finstall%2Finstall-visual-studio%3Fview%3Dvs-2019 visual studio 다운로드 | IDE, Code & Team Foundation Server | Visual Studio Visual Studio Community, Professional 및 Enterprise를 다운로드하세요. 지금 무료로 Visual Studio Code 또는 Team Foundation Server를 체험해 보세요. vis..
#include #include #include #include #define ASC 0 #define DSC 1 const int TRUE = 1; const int FALSE = 0; using std::cout; using std::cin; using std::endl; typedef struct fruit{ int id; char name[20]; int price; struct fruit *link; }Fruit; int addHead(Fruit **head, int id, char *name, int price); int removeHead(Fruit **head); int removeAll(Fruit **head); void printList(Fruit *head); int getId(Fru..
#include /* using std::cout; using std::endl; using std::cin; */ #define _CRT_SECURE_NO_WARNINGS using namespace std; const int name_LENGTH = 20; /* ===========swap 함수=============== void swap(int *a, int *b){ int temp; temp = *a; *a = *b; *b = temp; } void swap(char *a, char *b){ int temp; temp = *a; *a = *b; *b = temp; } */ /*=============직육면체 크기공식 함수========== int BoxVolume(int length, int wi..