기준일: 2026년 9월 7일
시험 가이드 기준: 2026년 5월 4일판
대상: 데이터 분석, 빅데이터, AI 경험이 거의 없는 한국인 개발자
이 학습서는 00장부터 순서대로 읽습니다. 직접 실행하는 기본 경로는 Free Edition 서버리스이며, 08장 종합 실습은 앞 장의 데이터와 격리된 환경을 사용합니다.
| import React | |
| import UIKit | |
| class SecureImageView: UIView { | |
| @objc var url: String = "" { | |
| didSet { | |
| do { | |
| let imageUrl = URL(string: url) | |
| let data = try Data(contentsOf: imageUrl!) | |
| let image = UIImage(data: data) |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| int set_random() { | |
| int result = rand() % 3; | |
| return result; | |
| } | |
| int decision(int computer, int user) { |
I hereby claim:
To claim this, I am signing this object:
| { | |
| "BTTPresetName" : "Default", | |
| "BTTPresetUUID" : "13CE21D5-B6B5-43BD-9BC6-01945FCEDE7A", | |
| "BTTPresetContent" : [ | |
| { | |
| "BTTAppBundleIdentifier" : "BT.G", | |
| "BTTAppName" : "Global", | |
| "BTTAppAutoInvertIcon" : 1, | |
| "BTTAppSpecificSettings" : { |
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="com.kentastudio.hanyang"> | |
| <application | |
| android:allowBackup="true" | |
| android:icon="@mipmap/ic_launcher" | |
| android:label="@string/app_name" | |
| android:roundIcon="@mipmap/ic_launcher_round" | |
| android:supportsRtl="true" |
| <table border=1> | |
| <tr> | |
| <td>1위</td> | |
| <td>2위</td> | |
| <td>3위</td> | |
| <td>4위</td> | |
| <td>5위</td> | |
| <td>6위</td> | |
| <td>7위</td> | |
| <td>8위</td> |
| import requests | |
| from bs4 import BeautifulSoup | |
| import pymysql | |
| import datetime | |
| conn = pymysql.connect(host='localhost', user='root', password='', db='', charset='utf8') | |
| curs = conn.cursor() | |
| sql = "INSERT INTO search(first, second, third, fourth, fifth, sixth, seventh, eighth, ninth, tenth, date) VALUES(%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)" | |
| html = requests.get('https://www.naver.com/').text |
| #include <stdio.h> | |
| char goBoard[19][19]; | |
| int i, j; | |
| void initialize() | |
| { | |
| for(i = 0; i < 19; i++) | |
| { | |
| for(j = 0; j < 19; j++) |