[
{
"title": "배열의 최대값 찾기",
"problemType": "MULTIPLE_CHOICE",
"category": "1차원 리스트",
"difficulty": 2,
"problemContent": {
"content": "배열이 주어질 때, 배열의 요소 중 가장 큰 값을 찾아서 반환하는 프로그램을 작성하세요. 배열은 정수로만 구성되어 있으며, 배열의 크기는 1 이상 100 이하입니다.",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "배열의 첫 번째 요소를 최대값으로 설정하고, 배열을 순회하며 최대값을 갱신한다."
},
{
"choiceText": "배열을 오름차순 정렬한 후 첫번째 요소를 반환한다."
},
{
"choiceText": "배열을 내림차순 정렬한 후 마지막 요소를 반환한다."
},
{
"choiceText": "배열의 요소를 모두 더한 값을 반환한다."
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "배열의 첫 번째 요소를 최대값으로 설정하고, 배열을 순회하며 최대값을 갱신한다."
},
"correctAnswerText": null
}
]
},
{
"title": "문자열에서 특정 문자 개수 세기",
"problemType": "MULTIPLE_CHOICE",
"category": "자료형",
"difficulty": 2,
"problemContent": {
"content": "주어진 문자열에서 특정 문자가 몇 번 나타나는지 세는 프로그램을 작성하세요.",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "문자열을 순회하며 각 문자를 비교하여 특정 문자의 개수를 세기."
},
{
"choiceText": "문자열을 정렬한 후 특정 문자가 몇 개 있는지 세기."
},
{
"choiceText": "문자열에서 특정 문자만 추출하여 그 길이를 반환하기."
},
{
"choiceText": "문자열을 대문자로 변환한 후 특정 문자의 개수를 세기."
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "문자열을 순회하며 각 문자를 비교하여 특정 문자의 개수를 세기."
},
"correctAnswerText": null
}
]
},
{
"title": "소수 판별",
"problemType": "MULTIPLE_CHOICE",
"category": "알고리즘",
"difficulty": 3,
"problemContent": {
"content": "주어진 정수가 소수인지 판별하는 프로그램을 작성하세요. 소수는 1과 자기 자신만으로 나누어 떨어지는 수입니다.",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "주어진 수가 2부터 n의 제곱근까지 나누어 떨어지는지 확인한다. (n>=2 자연수)"
},
{
"choiceText": "주어진 수가 1과 자기 자신 외의 수로 나누어 떨어지는지 확인한다."
},
{
"choiceText": "주어진 수가 2보다 큰 모든 수로 나누어 떨어지는지 확인한다."
},
{
"choiceText": "주어진 수가 홀수인지 확인한다."
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "주어진 수가 2부터 n의 제곱근까지 나누어 떨어지는지 확인한다. (n>=2 자연수)"
},
"correctAnswerText": null
}
]
},
{
"title": "정렬된 배열에서 이진 탐색",
"problemType": "MULTIPLE_CHOICE",
"category": "탐색",
"difficulty": 4,
"problemContent": {
"content": "정렬된 배열과 검색할 값이 주어질 때, 이진 탐색 알고리즘을 사용하여 값을 찾는 프로그램을 작성하세요. 배열은 오름차순으로 정렬되어 있습니다.",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "중간값과 검색할 값을 비교하여 배열의 절반을 반복적으로 탐색한다."
},
{
"choiceText": "배열의 모든 요소를 순차적으로 비교하여 검색할 값을 찾는다."
},
{
"choiceText": "배열을 정렬한 후 이진 탐색을 수행한다."
},
{
"choiceText": "배열을 역순으로 정렬한 후 이진 탐색을 수행한다."
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "중간값과 검색할 값을 비교하여 배열의 절반을 반복적으로 탐색한다."
},
"correctAnswerText": null
}
]
},
{
"title": "배열의 중복 요소 제거",
"problemType": "MULTIPLE_CHOICE",
"category": "1차원 리스트",
"difficulty": 3,
"problemContent": {
"content": "정렬된 배열과 검색할 값이 주어질 때, 이진 탐색 알고리즘을 사용하여 값을 찾는 프로그램을 작성하세요. 배열은 오름차순으로 정렬되어 있습니다.",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "중간값과 검색할 값을 비교하여 배열의 절반을 반복적으로 탐색한다."
},
{
"choiceText": "배열을 정렬한 후 인접한 중복 요소를 제거한다."
},
{
"choiceText": "배열의 모든 요소를 순차적으로 비교하여 검색할 값을 찾는다."
},
{
"choiceText": "배열의 모든 요소를 2배로 만들어 중복을 피한다."
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "배열을 정렬한 후 인접한 중복 요소를 제거한다."
},
"correctAnswerText": null
}
]
},
{
"title": "정수의 합 구하기",
"problemType": "MULTIPLE_CHOICE",
"category": "1차원 리스트",
"difficulty": 2,
"problemContent": {
"content": "정수 배열이 주어질 때, 배열의 모든 요소의 합을 계산하는 프로그램을 작성하세요.",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "배열을 순회하며 각 요소를 누적하여 합을 계산한다."
},
{
"choiceText": "배열을 정렬한 후 첫 번째 요소와 마지막 요소의 합을 계산한다."
},
{
"choiceText": "배열의 요소를 제곱하여 합을 계산한다."
},
{
"choiceText": "배열의 평균값을 구한 후 평균값에 배열의 길이를 곱한다."
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "배열을 순회하며 각 요소를 누적하여 합을 계산한다."
},
"correctAnswerText": null
}
]
},
{
"title": "중복 문자 제거",
"problemType": "MULTIPLE_CHOICE",
"category": "자료형",
"difficulty": 3,
"problemContent": {
"content": "주어진 문자열에서 모든 중복 문자를 제거한 새로운 문자열을 반환하는 프로그램을 작성하세요.",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "문자열을 순회하며 각 문자를 집합에 추가한 후 집합을 문자열로 변환한다."
},
{
"choiceText": "문자열을 정렬한 후 앞에서 부터 순회하며 인접한 문자가 같으면 제거한다."
},
{
"choiceText": "문자열의 각 문자를 개수에 따라 정렬한다."
},
{
"choiceText": "문자열의 각 문자를 ASCII 값으로 변환한다."
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "문자열을 순회하며 각 문자를 집합에 추가한 후 집합을 문자열로 변환한다."
},
"correctAnswerText": null
}
]
},
{
"title": "두 정수의 최대공약수 (GCD)",
"problemType": "MULTIPLE_CHOICE",
"category": "알고리즘",
"difficulty": 4,
"problemContent": {
"content": "두 정수가 주어질 때, 두 정수의 최대공약수(GCD)를 계산하는 프로그램을 작성하세요.",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "유클리드 알고리즘을 사용하여 최대공약수를 계산한다."
},
{
"choiceText": "두 수의 배수 중 작은 값을 찾아 최대공약수를 계산한다."
},
{
"choiceText": "두 수의 평균을 계산하여 최대공약수를 추정한다."
},
{
"choiceText": "두 수의 차를 계산하여 최대공약수를 추정한다."
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "유클리드 알고리즘을 사용하여 최대공약수를 계산한다."
},
"correctAnswerText": null
}
]
},
{
"title": "반복문을 활용한 출력 결과 예측",
"problemType": "MULTIPLE_CHOICE",
"category": "반복문",
"difficulty": 2,
"problemContent": {
"content": "다음 코드의 출력 결과를 예측하세요.\\n\\npython\\nfor i in range(1, 6):\\n print(i * 2, end=' ')\\n",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "2 4 6 8 10"
},
{
"choiceText": "1 3 5 7 9"
},
{
"choiceText": "1 2 3 4 5"
},
{
"choiceText": "2 3 4 5 6"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "2 4 6 8 10"
},
"correctAnswerText": null
}
]
},
{
"title": "반복문을 통한 곱셈 결과 예측",
"problemType": "MULTIPLE_CHOICE",
"category": "반복문",
"difficulty": 2,
"problemContent": {
"content": "다음 코드의 출력 결과를 예측하세요.\\n\\npython\\nresult = 1\\nfor i in range(1, 6):\\n result *= i\\nprint(result)\\n",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "120"
},
{
"choiceText": "60"
},
{
"choiceText": "24"
},
{
"choiceText": "10"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "120"
},
"correctAnswerText": null
}
]
},
{
"title": "리스트의 인덱스와 반복문을 이용한 출력 결과 예측",
"problemType": "MULTIPLE_CHOICE",
"category": "1차원 리스트",
"difficulty": 3,
"problemContent": {
"content": "다음 코드의 출력 결과를 예측하세요.\\n\\npython\\nnumbers = [1, 2, 3, 4, 5]\\nfor index, value in enumerate(numbers):\\n print(index, value, end=' ')\\n",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "0 1 1 2 2 3 3 4 4 5"
},
{
"choiceText": "1 1 2 2 3 3 4 4 5 5"
},
{
"choiceText": "0 1 2 3 4 1 2 3 4 5"
},
{
"choiceText": "0 1 2 3 4 1 2 3 4 5"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "0 1 1 2 2 3 3 4 4 5"
},
"correctAnswerText": null
}
]
},
{
"title": "조건문과 반복문을 이용한 출력 결과 예측",
"problemType": "MULTIPLE_CHOICE",
"category": "조건문",
"difficulty": 2,
"problemContent": {
"content": "다음 코드의 출력 결과를 예측하세요.\\n\\npython\\nfor i in range(10):\\n if i % 2 == 0:\\n print(i, end=' ')\\n",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "0 2 4 6 8"
},
{
"choiceText": "1 3 5 7 9"
},
{
"choiceText": "1 2 3 4 5"
},
{
"choiceText": "2 4 6 8 10"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "0 2 4 6 8"
},
"correctAnswerText": null
}
]
},
{
"title": "문자열 처리와 반복문을 이용한 출력 결과 예측",
"problemType": "MULTIPLE_CHOICE",
"category": "자료형",
"difficulty": 2,
"problemContent": {
"content": "다음 코드의 출력 결과를 예측하세요.\\n\\npython\\ntext = 'hello'\\nfor char in text:\\n print(char.upper(), end=' ')\\n",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "HELLO"
},
{
"choiceText": "H E L L O"
},
{
"choiceText": "hELLO"
},
{
"choiceText": "H e L l O"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "H E L L O"
},
"correctAnswerText": null
}
]
},
{
"title": "중첩 반복문을 이용한 출력 결과 예측",
"problemType": "MULTIPLE_CHOICE",
"category": "반복문",
"difficulty": 3,
"problemContent": {
"content": "다음 코드의 출력 결과를 예측하세요.\\n\\npython\\nfor i in range(3):\\n for j in range(2):\\n print(i * j, end=' ')\\n",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "0 0 0 1 0 2"
},
{
"choiceText": "0 1 2 3 4 5"
},
{
"choiceText": "0 0 1 2 2 4"
},
{
"choiceText": "0 0 0 1 2 3"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "0 0 0 1 0 2"
},
"correctAnswerText": null
}
]
},
{
"title": "딕셔너리와 반복문을 이용한 출력 결과 예측",
"problemType": "MULTIPLE_CHOICE",
"category": "자료형",
"difficulty": 2,
"problemContent": {
"content": "다음 코드의 출력 결과를 예측하세요.\\n\\npython\\ndata = {'a': 1, 'b': 2, 'c': 3}\\nfor key, value in data.items():\\n print(key, value, end=' ')\\n",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "a 1 b 2 c 3"
},
{
"choiceText": "1 a 2 b 3 c"
},
{
"choiceText": "a b c 1 2 3"
},
{
"choiceText": "1 2 3 a b c"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "a 1 b 2 c 3"
},
"correctAnswerText": null
}
]
},
{
"title": "함수와 반복문을 이용한 출력 결과 예측",
"problemType": "MULTIPLE_CHOICE",
"category": "함수의 활용",
"difficulty": 2,
"problemContent": {
"content": "다음 코드의 출력 결과를 예측하세요.\\n\\npython\\ndef square(x):\\n return x * x\\n\\nfor i in range(3):\\n print(square(i), end=' ')\\n",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "0 1 4"
},
{
"choiceText": "1 4 9"
},
{
"choiceText": "1 2 3"
},
{
"choiceText": "0 1 2"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "0 1 4"
},
"correctAnswerText": null
}
]
},
{
"title": "딕셔너리에서 특정 키의 값을 찾는 코드의 출력 예측",
"problemType": "MULTIPLE_CHOICE",
"category": "자료형",
"difficulty": 1,
"problemContent": {
"content": "다음 코드를 실행한 후 my_dict['b']의 값을 예측하세요.\\n\\npython\\nmy_dict = {'a': 1, 'b': 2, 'c': 3}\\nprint(my_dict['b'])\\n\\n",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "2"
},
{
"choiceText": "1"
},
{
"choiceText": "3"
},
{
"choiceText": "KeyError"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "2"
},
"correctAnswerText": null
}
]
},
{
"title": "리스트의 요소를 역순으로 출력하는 코드의 결과 예측",
"problemType": "MULTIPLE_CHOICE",
"category": "1차원 리스트",
"difficulty": 2,
"problemContent": {
"content": "다음 코드를 실행한 후 출력 결과를 예측하세요.\\n\\npython\\nnumbers = [5, 10, 15, 20]\\n\\nfor num in reversed(numbers):\\n print(num, end=' ')\\n\\n",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "20 15 10 5"
},
{
"choiceText": "5 10 15 20"
},
{
"choiceText": "20 15 10"
},
{
"choiceText": "5 10 15"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "20 15 10 5"
},
"correctAnswerText": null
}
]
},
{
"title": "튜플의 합계와 평균을 계산하는 함수의 출력 예측",
"problemType": "MULTIPLE_CHOICE",
"category": "자료형",
"difficulty": 2,
"problemContent": {
"content": "다음 코드를 실행한 후 함수의 반환값을 예측하세요.\\n\\npython\\nnumbers = (4, 8, 12)\\n\\ntotal = sum(numbers)\\naverage = total / len(numbers)\\nprint(total, average)\\n\\n",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "24 8.0"
},
{
"choiceText": "12 4.0"
},
{
"choiceText": "24 6.0"
},
{
"choiceText": "20 6.0"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "24 8.0"
},
"correctAnswerText": null
}
]
},
{
"title": "리스트의 요소를 역순으로 출력하는 코드의 결과 예측",
"problemType": "MULTIPLE_CHOICE",
"category": "1차원 리스트",
"difficulty": 2,
"problemContent": {
"content": "다음 코드를 실행한 후 출력 결과를 예측하세요.\\n\\npython\\nnumbers = [5, 10, 15, 20]\\n\\nfor num in numbers[::-1]:\\n print(num, end=' ')\\n\\n",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "20 15 10 5"
},
{
"choiceText": "5 10 15 20"
},
{
"choiceText": "20 15 10"
},
{
"choiceText": "5 10 15"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "20 15 10 5"
},
"correctAnswerText": null
}
]
},
{
"title": "조건문에 따라 다른 문자열을 출력하는 코드의 결과 예측",
"problemType": "MULTIPLE_CHOICE",
"category": "조건문",
"difficulty": 2,
"problemContent": {
"content": "다음 코드를 실행한 후 출력 결과를 예측하세요.\\n\\npython\\nn = 10\\n\\nif n > 10:\\n result = 'Greater than 10'\\nelif n == 10:\\n result = 'Equal to 10'\\nelse:\\n result = 'Less than 10'\\n\\nprint(result)\\n\\n",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "Equal to 10"
},
{
"choiceText": "Greater than 10"
},
{
"choiceText": "Less than 10"
},
{
"choiceText": "No Output"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "Equal to 10"
},
"correctAnswerText": null
}
]
},
{
"title": "리스트에서 최대값과 최소값을 찾는 코드의 출력 예측",
"problemType": "MULTIPLE_CHOICE",
"category": "1차원 리스트",
"difficulty": 2,
"problemContent": {
"content": "다음 코드를 실행한 후 출력 결과를 예측하세요.\\n\\npython\\nnumbers = [3, 7, 2, 9, 4]\\n\\nmax_value = max(numbers)\\nmin_value = min(numbers)\\nprint('Max:', max_value, 'Min:', min_value)\\n\\n",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "Max: 9 Min: 2"
},
{
"choiceText": "Max: 7 Min: 2"
},
{
"choiceText": "Max: 9 Min: 3"
},
{
"choiceText": "Max: 7 Min: 3"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "Max: 9 Min: 2"
},
"correctAnswerText": null
}
]
}
]