Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
Tags
- GoogleDrive
- Machine Learning
- colab
- VSCode
- Database
- OSS
- KAKAO
- Resnet
- API
- rnn
- Spring
- Spring Boot
- Python
- Web
- suricata
- LINUX MASTER
- 국가과제
- 코딩도장
- ChatGPT
- 고등학생 대상
- ICT멘토링
- git
- 인터넷의이해
- Github
- C언어
- 크롤링 개발
- Docker
- Powershell
- Rocky Linux
- cloud
Archives
- Today
- Total
목록2025/12/15 (2)
코딩두의 포트폴리오
[2023실기] 3회
1. 다음 JAVA로 구현된 프로그램을 분석하여 그 실행 결과를 쓰시오.class SuperObject { public void draw() { System.out.println("A"); draw(); } public void paint() { System.out.print("B"); draw(); }}class SubObject extends SuperObject { public void paint() { super.paint(); System.out.print("C"); draw(); } public void draw() { System.out.print("D")..
정보처리기사/2023 실기
2025. 12. 15. 16:45
[2023실기] 2회
1. 다음 C언어로 구현된 프로그램을 실행시킨 결과과 "43215"일 때, 을 참고하여 괄호에 들어갈 알맞은 식을 쓰시오.#include main() { int n[] = { 5, 4, 3, 2, 1 }; for (int i = 0; i 괄호의 식에 사용할 문자는 다음으로 제한한다.- n, i- +, -, /, *, %- 0~9, (, ), [, ] 2. 다음 C언어로 구현된 프로그램과 을 참고하여 괄호(1~4)에 들어갈 알맞은 식을 스시오.#include main() { int m = 4620; int a = ( ① ); int b = ( ② ); int c = ( ③ ); int d = ( ④ ); printf("1000원의 개수 : %d\n", a)..
정보처리기사/2023 실기
2025. 12. 15. 13:13
