[
{
"title": "문자열 길이 계산 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "표준입출력",
"difficulty": 1,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nname = input('이름을 입력하세요: ')\\nprint(len(name))\\n\\n입력: John",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "4"
}
]
},
{
"title": "리스트 인덱싱 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "1차원 리스트",
"difficulty": 1,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\narr = [1, 2, 3, 4, 5]\\nprint(arr[2])",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "3"
}
]
},
{
"title": "리스트 정렬 후 중간 값 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "정렬",
"difficulty": 2,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\narr = [3, 0, 2, 5, -1, 4, 1]\\narr.sort()\\nprint(arr[3])",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "2"
}
]
},
{
"title": "리스트 정렬 후 최대값 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "정렬",
"difficulty": 2,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\narr = [10, 7, 8, 9, 1, 5]\\narr.sort()\\nprint(arr[-1])",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "10"
}
]
},
{
"title": "두 수의 합 입력 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "표준입출력",
"difficulty": 1,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\na = int(input('첫 번째 수: '))\\nb = int(input('두 번째 수: '))\\nprint(a + b)\\n\\n입력: 3, 4",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "7"
}
]
},
{
"title": "변수 제곱 계산 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "변수",
"difficulty": 1,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nx = 5\\nprint(x**2)",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "25"
}
]
},
{
"title": "변수 간 연산 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "변수",
"difficulty": 2,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\na = 10\\nb = 20\\nprint(a + b / 10 * 2)",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "14"
}
]
},
{
"title": "정수 나눗셈 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "연산자",
"difficulty": 2,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\na = 15\\nb = 4\\nprint(a // b)",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "3"
}
]
},
{
"title": "나머지 연산 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "연산자",
"difficulty": 2,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nx = 10\\nprint(x % 3)",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "1"
}
]
},
{
"title": "리스트 길이 계산 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "1차원 리스트",
"difficulty": 1,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nnumbers = [10, 20, 30, 40, 50]\\nprint(len(numbers))",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "5"
}
]
},
{
"title": "리스트 정렬 후 두 번째 큰 값 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "정렬",
"difficulty": 3,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\narr = [64, 25, 12, 22, 11]\\narr.sort()\\nprint(arr[-2])",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "25"
}
]
},
{
"title": "입력받은 수의 제곱 계산 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "표준입출력",
"difficulty": 2,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nnum = int(input('숫자를 입력하세요: '))\\nprint(num ** 2)\\n\\n입력: 1",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "1"
}
]
},
{
"title": "문자열 덧셈 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "변수",
"difficulty": 1,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\ns = 'Hello'\\nprint(s+'!')",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "Hello!"
}
]
},
{
"title": "리스트 마지막 요소 계산 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "1차원 리스트",
"difficulty": 3,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nelements = [5, 10, 15, 20]\\nprint(elements[len(elements)-1] * 2)",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "40"
}
]
},
{
"title": "변수의 거듭제곱 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "변수",
"difficulty": 1,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nx = 5\\nprint(x**1)",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "5"
}
]
},
{
"title": "입력받은 수의 홀짝 판단 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "표준입출력",
"difficulty": 2,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nnum = int(input('숫자를 입력하세요: '))\\nprint(num % 2)\\n\\n입력: 5",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "1"
}
]
},
{
"title": "리스트 정렬 후 두 수의 합 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "정렬",
"difficulty": 3,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\narr = [10, 7, 8, 9, 1, 5]\\narr.sort()\\nprint(arr[-1] + arr[1])",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "15"
}
]
},
{
"title": "문자열 길이의 제곱 계산 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "표준입출력",
"difficulty": 2,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nname = input('이름을 입력하세요: ')\\nprint(len(name)**2)\\n\\n입력: John",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "16"
}
]
},
{
"title": "리스트 정렬 후 세 요소의 합 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "정렬",
"difficulty": 4,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\narr = [64, 25, 12, 22, 11]\\narr.sort()\\nprint(arr[0]+arr[-1]+arr[1])",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "87"
}
]
},
{
"title": "거듭제곱 연산 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "연산자",
"difficulty": 3,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\na = 7\\nb = 3\\nprint(a ** b)",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "343"
}
]
},
{
"title": "리스트 요소 곱셈 문제",
"problemType": "SHORT_ANSWER_QUESTION",
"category": "1차원 리스트",
"difficulty": 2,
"problemContent": {
"content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\narr = [1, 2, 3, 4, 5]\\nprint(arr[2]*2)",
"numberOfBlanks": 0
},
"problemChoices": [],
"problemAnswers": [
{
"blankPosition": null,
"correctChoice": null,
"correctAnswerText": "6"
}
]
}
]
- 문제 없는거같은데 카테고리만 통일하면 될듯? 기준에 맞춰서