보기 1번을 정답으로 바꿔주세요.
{
"title": "연산자 우선순위",
"problemType": "MULTIPLE_CHOICE",
"category": "연산자",
"difficulty": 3,
"problemContent": {
"content": "다음 중 연산자 우선순위에 따라 올바르게 계산된 결과는 무엇입니까? (a = 5, b = 10, c = 3)",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "a + b * c = 45"
},
{
"choiceText": "a + b * c = 35"
},
{
"choiceText": "(a + b) * c = 45"
},
{
"choiceText": "a * b + c = 80"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "a + b * c = 35"
},
"correctAnswerText": null
}
]
}
{
"title": "표준 입력을 통한 정수 합산",
"problemType": "MULTIPLE_CHOICE",
"category": "표준입출력",
"difficulty": 2,
"problemContent": {
"content": "사용자로부터 두 개의 정수를 입력받아 그 합을 출력하는 프로그램의 올바른 구조는 무엇입니까?",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "a = input(); b = input(); print(a + b)"
},
{
"choiceText": "a = int(input()); b = int(input()); print(a + b)"
},
{
"choiceText": "a = input(); b = input(); print(int(a + b))"
},
{
"choiceText": "a = int(input()); b = input(); print(a + b)"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "a = int(input()); b = int(input()); print(a + b)"
},
"correctAnswerText": null
}
]
}
{
"title": "파일에 문자열 쓰기",
"problemType": "MULTIPLE_CHOICE",
"category": "파일입출력",
"difficulty": 3,
"problemContent": {
"content": "파일에 문자열을 쓰는 올바른 방법은 무엇입니까?",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "file = open('text.txt', 'r'); file.write('Hello, World!'); file.close()"
},
{
"choiceText": "file = open('text.txt', 'w'); file.write('Hello, World!'); file.close()"
},
{
"choiceText": "file = open('text.txt', 'a'); file.read('Hello, World!'); file.close()"
},
{
"choiceText": "file = open('text.txt', 'w'); file.read('Hello, World!'); file.close()"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "file = open('text.txt', 'w'); file.write('Hello, World!'); file.close()"
},
"correctAnswerText": null
}
]
}
{
"title": "조건문을 이용한 숫자 범위 확인",
"problemType": "MULTIPLE_CHOICE",
"category": "조건문",
"difficulty": 2,
"problemContent": {
"content": "숫자가 10과 20 사이에 있는지 확인하는 올바른 조건문은 무엇입니까?",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "if 10 < x < 20:"
},
{
"choiceText": "if 10 <= x <= 20:"
},
{
"choiceText": "if x > 10 and x < 20:"
},
{
"choiceText": "if x >= 10 and x <= 20:"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "if x >= 10 and x <= 20:"
},
"correctAnswerText": null
}
]
}
{
"title": "리스트에서 중복 요소 제거",
"problemType": "MULTIPLE_CHOICE",
"category": "1차원 리스트",
"difficulty": 3,
"problemContent": {
"content": "주어진 리스트에서 중복된 요소를 제거하여 새로운 리스트를 반환하는 올바른 방법은 무엇입니까?",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "new_list = list(set(old_list))"
},
{
"choiceText": "new_list = set(old_list)"
},
{
"choiceText": "new_list = old_list.remove_duplicates()"
},
{
"choiceText": "new_list = [x for x in old_list if x not in new_list]"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "new_list = list(set(old_list))"
},
"correctAnswerText": null
}
]
}
{
"title": "2차원 리스트의 크기 구하기",
"problemType": "MULTIPLE_CHOICE",
"category": "2차원 리스트",
"difficulty": 3,
"problemContent": {
"content": "2차원 리스트의 행과 열의 수를 반환하는 올바른 방법은 무엇입니까?",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "rows = len(matrix); cols = len(matrix[0])"
},
{
"choiceText": "rows = len(matrix[0]); cols = len(matrix)"
},
{
"choiceText": "rows, cols = len(matrix)"
},
{
"choiceText": "rows = matrix.len(); cols = matrix[0].len()"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "rows = len(matrix); cols = len(matrix[0])"
},
"correctAnswerText": null
}
]
}
{
"title": "재귀 함수를 이용한 피보나치 수열",
"problemType": "MULTIPLE_CHOICE",
"category": "함수의 활용",
"difficulty": 4,
"problemContent": {
"content": "재귀 함수를 사용하여 피보나치 수열의 n번째 항을 계산하는 함수의 올바른 구조는 무엇입니까?",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "def fibonacci(n): if n <= 1: return n else: return fibonacci(n-1) + fibonacci(n-2)"
},
{
"choiceText": "def fibonacci(n): if n == 1: return 1 else: return fibonacci(n-1) + fibonacci(n-3)"
},
{
"choiceText": "def fibonacci(n): if n == 0: return 0 else: return fibonacci(n-1) + fibonacci(n-3)"
},
{
"choiceText": "def fibonacci(n): if n <= 1: return n else: return fibonacci(n-2) + fibonacci(n-3)"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "def fibonacci(n): if n <= 1: return n else: return fibonacci(n-1) + fibonacci(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": "탐색",
"difficulty": 5,
"problemContent": {
"content": "선형 탐색(Linear Search) 알고리즘의 시간 복잡도는 무엇입니까?",
"numberOfBlanks": 0
},
"problemChoices": [
{
"choiceText": "O(n)"
},
{
"choiceText": "O(log n)"
},
{
"choiceText": "O(n^2)"
},
{
"choiceText": "O(1)"
}
],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": {
"choiceText": "O(n)"
},
"correctAnswerText": null
}
]
}