[
  {
    "title": "상수와 변수의 차이점",
    "problemType": "MULTIPLE_CHOICE",
    "category": "변수",
    "difficulty": 1,
    "problemContent": {
      "content": "다음 중 상수와 변수의 차이점에 대한 설명으로 올바른 것은 무엇입니까?",
      "numberOfBlanks": 0
    },
    "problemChoices": [
      {
        "choiceText": "상수는 값을 변경할 수 없고, 변수는 값을 변경할 수 있다."
      },
      {
        "choiceText": "상수는 값을 변경할 수 있고, 변수는 값을 변경할 수 없다."
      },
      {
        "choiceText": "상수와 변수는 모두 값을 변경할 수 없다."
      },
      {
        "choiceText": "상수와 변수는 모두 값을 변경할 수 있다."
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": null,
        "correctChoice": {
          "choiceText": "상수는 값을 변경할 수 없고, 변수는 값을 변경할 수 있다."
        },
        "correctAnswerText": null
      }
    ]
  },
  {
    "title": "2차원 리스트 요소 접근",
    "problemType": "MULTIPLE_CHOICE",
    "category": "2차원 리스트",
    "difficulty": 3,
    "problemContent": {
      "content": "2차원 리스트에서 첫 번째 행의 두 번째 요소에 접근하는 올바른 방법은 무엇입니까?",
      "numberOfBlanks": 0
    },
    "problemChoices": [
      {
        "choiceText": "list[0][1]"
      },
      {
        "choiceText": "list[1][2]"
      },
      {
        "choiceText": "list[1][1]"
      },
      {
        "choiceText": "list[0, 1]"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": null,
        "correctChoice": {
          "choiceText": "list[0][1]"
        },
        "correctAnswerText": null
      }
    ]
  },
  {
    "title": "명시적 형변환",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "자료형",
    "difficulty": 2,
    "problemContent": {
      "content": "다음 코드는 문자열을 정수로 변환하는 코드입니다. 빈칸에 알맞은 내용을 채워서 코드를 완성하세요.\\n\\nnum_str = '123'\\nnum_int = $blank1$(num_str)\\nprint('Integer value:', num_int)\\n",
      "numberOfBlanks": 1
    },
    "problemChoices": [
      {
        "choiceText": "int"
      },
      {
        "choiceText": "float"
      },
      {
        "choiceText": "floor"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "int"
        },
        "correctAnswerText": null
      }
    ]
  },
  {
    "title": "두 수의 나눗셈",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "연산자",
    "difficulty": 2,
    "problemContent": {
      "content": "변수 x와 y의 나눈 값과 나머지를 출력하세요.\\nx = 10\\ny = 3\\nz = x $blank1$ y\\nremainder = x $blank2$ y\\nprint(z, remainder)",
      "numberOfBlanks": 2
    },
    "problemChoices": [
      {
        "choiceText": "/"
      },
      {
        "choiceText": "%"
      },
      {
        "choiceText": "+"
      },
      {
        "choiceText": "-"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "/"
        },
        "correctAnswerText": null
      },
      {
        "blankPosition": 2,
        "correctChoice": {
          "choiceText": "%"
        },
        "correctAnswerText": null
      }
    ]
  },
  {
      "title": "조건문 문제",
      "problemType": "SHORT_ANSWER_QUESTION",
      "category": "조건문",
      "difficulty": 1,
      "problemContent": {
          "content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nx = 10\\ny = 20\\nif x < y:\\n    print('1')\\nelse:\\n    print('2')",
          "numberOfBlanks": 0
      },
      "problemChoices": [],
      "problemAnswers": [
          {
              "blankPosition": null,
              "correctChoice": null,
              "correctAnswerText": "1"
          }
      ]
  },
	{
      "title": "딕셔너리 값 접근 문제",
      "problemType": "SHORT_ANSWER_QUESTION",
      "category": "자료형",
      "difficulty": 1,
      "problemContent": {
          "content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nstudent = {'name': 'Alice', 'age': 20, 'grade': 'A'}\\nprint(student['grade'])",
          "numberOfBlanks": 0
      },
      "problemChoices": [],
      "problemAnswers": [
          {
              "blankPosition": null,
              "correctChoice": null,
              "correctAnswerText": "A"
          }
      ]
  }
]
[
  {
    "title": "실수형으로 변환",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "자료형",
    "difficulty": 2,
    "problemContent": {
      "content": "변수 x와 y의 합을 실수형으로 변환하여 출력하세요.\\nx = 10\\ny = 3.14\\nz = $blank1$(x + y)\\nprint(z)",
      "numberOfBlanks": 1
    },
    "problemChoices": [
      {
        "choiceText": "float"
      },
      {
        "choiceText": "int"
      },
      {
        "choiceText": "str"
      },
      {
        "choiceText": "bool"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "float"
        },
        "correctAnswerText": null
      }
    ]
  },
  {
    "title": "두 수의 합",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "연산자",
    "difficulty": 1,
    "problemContent": {
      "content": "변수 x와 y의 합을 출력하세요.\\nx = 5\\ny = 2\\nz = x $blank1$ y\\nprint(z)",
      "numberOfBlanks": 1
    },
    "problemChoices": [
      {
        "choiceText": "+"
      },
      {
        "choiceText": "-"
      },
      {
        "choiceText": "*"
      },
      {
        "choiceText": "/"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "+"
        },
        "correctAnswerText": null
      }
    ]
  },
  {
    "title": "사용자로부터 입력받아 인사하기",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "표준입출력",
    "difficulty": 3,
    "problemContent": {
      "content": "# 사용자로부터 이름을 입력받아 인사말을 출력하는 코드를 완성하세요.\\nname = $blank1$\\nprint('Hello,', name)",
      "numberOfBlanks": 1
    },
    "problemChoices": [
      {
        "choiceText": "input()"
      },
      {
        "choiceText": "read()"
      },
      {
        "choiceText": "scan()"
      },
      {
        "choiceText": "get()"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "input()"
        },
        "correctAnswerText": null
      }
    ]
  },
  {
    "title": "1부터 5까지 숫자 출력하기",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "반복문",
    "difficulty": 2,
    "problemContent": {
      "content": "1부터 5까지의 숫자를 출력하는 코드를 완성하세요.\\nfor i in $blank1$(1, $blank2$):\\n    print(i)",
      "numberOfBlanks": 2
    },
    "problemChoices": [
      {
        "choiceText": "range"
      },
      {
        "choiceText": "6"
      },
      {
        "choiceText": "1"
      },
      {
        "choiceText": "5"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "range"
        },
        "correctAnswerText": null
      },
      {
        "blankPosition": 2,
        "correctChoice": {
          "choiceText": "6"
        },
        "correctAnswerText": null
      }
    ]
  },
  {
    "title": "리스트의 모든 요소 출력하기",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "반복문",
    "difficulty": 2,
    "problemContent": {
      "content": "주어진 리스트의 모든 요소를 출력하는 코드를 완성하세요.\\nfruits = ['apple', 'banana', 'cherry']\\nfor $blank1$ in $blank2$:\\n    print(fruit)",
      "numberOfBlanks": 2
    },
    "problemChoices": [
      {
        "choiceText": "fruit"
      },
      {
        "choiceText": "fruits"
      },
      {
        "choiceText": "i"
      },
      {
        "choiceText": "range"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "fruit"
        },
        "correctAnswerText": null
      },
      {
        "blankPosition": 2,
        "correctChoice": {
          "choiceText": "fruits"
        },
        "correctAnswerText": null
      }
    ]
  },
  {
    "title": "양수인지 음수인지 판별하는 조건문",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "조건문",
    "difficulty": 2,
    "problemContent": {
      "content": "입력된 숫자가 양수인지 음수인지 판별하는 조건문을 완성하세요.\\nnum = int(input('숫자를 입력하세요: '))\\nif num > 0:\\n    print('$blank1$')\\nelse:\\n    print('$blank2$')",
      "numberOfBlanks": 2
    },
    "problemChoices": [
      {
        "choiceText": "'양수'"
      },
      {
        "choiceText": "'음수'"
      },
      {
        "choiceText": "'0'"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "'양수'"
        },
        "correctAnswerText": null
      },
      {
        "blankPosition": 2,
        "correctChoice": {
          "choiceText": "'음수'"
        },
        "correctAnswerText": null
      }
    ]
  },
  {
    "title": "1차원 리스트에 요소 추가하기",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "1차원 리스트",
    "difficulty": 2,
    "problemContent": {
      "content": "fruits 리스트에 'cherry'를 추가하는 코드를 완성하세요.\\nfruits = ['apple', 'banana']\\nfruits.$blank1$('$blank2$')\\nprint(fruits)",
      "numberOfBlanks": 2
    },
    "problemChoices": [
      {
        "choiceText": "append"
      },
      {
        "choiceText": "'cherry'"
      },
      {
        "choiceText": "insert"
      },
      {
        "choiceText": "'orange'"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "append"
        },
        "correctAnswerText": null
      },
      {
        "blankPosition": 2,
        "correctChoice": {
          "choiceText": "'cherry'"
        },
        "correctAnswerText": null
      }
    ]
  },
  {
    "title": "두 수를 곱하는 함수",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "함수의 활용",
    "difficulty": 2,
    "problemContent": {
      "content": "주어진 두 수를 곱한 값을 반환하는 함수를 완성하세요.\\ndef multiply(a, b):\\n    $blank1$ a $blank2$ b\\n\\nresult = multiply(5, 3)\\nprint(result)",
      "numberOfBlanks": 2
    },
    "problemChoices": [
      {
        "choiceText": "return"
      },
      {
        "choiceText": "*"
      },
      {
        "choiceText": "="
      },
      {
        "choiceText": "+"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "return"
        },
        "correctAnswerText": null
      },
      {
        "blankPosition": 2,
        "correctChoice": {
          "choiceText": "*"
        },
        "correctAnswerText": null
      }
    ]
  },
  {
    "title": "탐색 문제 1",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "탐색",
    "difficulty": 2,
    "problemContent": {
      "content": "주어진 리스트에서 30의 인덱스를 찾는 코드를 완성하세요.\\nnumbers = [10, 20, 30, 40, 50]\\nindex = $blank1$.index($blank2$)\\nprint(index)",
      "numberOfBlanks": 2
    },
    "problemChoices": [
      {
        "choiceText": "numbers"
      },
      {
        "choiceText": "30"
      },
      {
        "choiceText": "index"
      },
      {
        "choiceText": "find"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "numbers"
        },
        "correctAnswerText": null
      },
      {
        "blankPosition": 2,
        "correctChoice": {
          "choiceText": "30"
        },
        "correctAnswerText": null
      }
    ]
  },
  {
    "title": "탐색 문제 2",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "탐색",
    "difficulty": 2,
    "problemContent": {
      "content": "리스트에 10이 존재하는지 확인하는 코드를 완성하세요.\\nnumbers = [5, 10, 15, 20, 25]\\nif $blank1$ in $blank2$:\\n    print('찾았다!')",
      "numberOfBlanks": 2
    },
    "problemChoices": [
      {
        "choiceText": "10"
      },
      {
        "choiceText": "numbers"
      },
      {
        "choiceText": "not"
      },
      {
        "choiceText": "exists"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "10"
        },
        "correctAnswerText": null
      },
      {
        "blankPosition": 2,
        "correctChoice": {
          "choiceText": "numbers"
        },
        "correctAnswerText": null
      }
    ]
  },
  {
    "title": "오름차순 정렬",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "정렬",
    "difficulty": 2,
    "problemContent": {
      "content": "주어진 리스트를 오름차순으로 정렬하는 코드를 완성하세요.\\nnumbers = [50, 20, 40, 10, 30]\\nnumbers.$blank1$()\\nprint(numbers)",
      "numberOfBlanks": 1
    },
    "problemChoices": [
      {
        "choiceText": "sort"
      },
      {
        "choiceText": "reverse"
      },
      {
        "choiceText": "append"
      },
      {
        "choiceText": "order"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "sort"
        },
        "correctAnswerText": null
      }
    ]
  },
  {
    "title": "내림차순 정렬",
    "problemType": "FILL_IN_THE_BLANK",
    "category": "정렬",
    "difficulty": 2,
    "problemContent": {
      "content": "주어진 리스트를 내림차순으로 정렬하는 코드를 완성하세요.\\nnumbers = [5, 15, 25, 35, 45]\\nnumbers.sort($blank1$=$blank2$)\\nprint(numbers)",
      "numberOfBlanks": 2
    },
    "problemChoices": [
      {
        "choiceText": "reverse"
      },
      {
        "choiceText": "True"
      },
      {
        "choiceText": "False"
      },
      {
        "choiceText": "key"
      }
    ],
    "problemAnswers": [
      {
        "blankPosition": 1,
        "correctChoice": {
          "choiceText": "reverse"
        },
        "correctAnswerText": null
      },
      {
        "blankPosition": 2,
        "correctChoice": {
          "choiceText": "True"
        },
        "correctAnswerText": null
      }
    ]
  },
  {
      "title": "문자열 슬라이싱 문제",
      "problemType": "SHORT_ANSWER_QUESTION",
      "category": "자료형",
      "difficulty": 1,
      "problemContent": {
          "content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\ns = 'Python Programming'\\nprint(s[0:6])",
          "numberOfBlanks": 0
      },
      "problemChoices": [],
      "problemAnswers": [
          {
              "blankPosition": null,
              "correctChoice": null,
              "correctAnswerText": "Python"
          }
      ]
  },
  {
      "title": "리스트 합계 문제",
      "problemType": "SHORT_ANSWER_QUESTION",
      "category": "1차원 리스트",
      "difficulty": 1,
      "problemContent": {
          "content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nnumbers = [10, 20, 30, 40, 50]\\nprint(sum(numbers))",
          "numberOfBlanks": 0
      },
      "problemChoices": [],
      "problemAnswers": [
          {
              "blankPosition": null,
              "correctChoice": null,
              "correctAnswerText": "150"
          }
      ]
  },
  {
      "title": "리스트와 반복문 사용",
      "problemType": "SHORT_ANSWER_QUESTION",
      "category": "1차원 리스트",
      "difficulty": 2,
      "problemContent": {
          "content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nnumbers = [1, 2, 3, 4, 5]\\nsum = 0\\nfor num in numbers:\\n    sum += num\\nprint(sum)",
          "numberOfBlanks": 0
      },
      "problemChoices": [],
      "problemAnswers": [
          {
              "blankPosition": null,
              "correctChoice": null,
              "correctAnswerText": "15"
          }
      ]
  },
  {
      "title": "리스트 기본 접근",
      "problemType": "SHORT_ANSWER_QUESTION",
      "category": "1차원 리스트",
      "difficulty": 1,
      "problemContent": {
          "content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nfruits = ['apple', 'banana', 'cherry']\\nprint(fruits[0])",
          "numberOfBlanks": 0
      },
      "problemChoices": [],
      "problemAnswers": [
          {
              "blankPosition": null,
              "correctChoice": null,
              "correctAnswerText": "apple"
          }
      ]
  },
  {
      "title": "리스트 합",
      "problemType": "SHORT_ANSWER_QUESTION",
      "category": "1차원 리스트",
      "difficulty": 1,
      "problemContent": {
          "content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nnumbers = [1, 2, 3]\\nprint(sum(numbers))",
          "numberOfBlanks": 0
      },
      "problemChoices": [],
      "problemAnswers": [
          {
              "blankPosition": null,
              "correctChoice": null,
              "correctAnswerText": "6"
          }
      ]
  },
  {
      "title": "리스트 최소값",
      "problemType": "SHORT_ANSWER_QUESTION",
      "category": "1차원 리스트",
      "difficulty": 2,
      "problemContent": {
          "content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nnumbers = [3, 1, 4, 1, 5, 9]\\nprint(min(numbers))",
          "numberOfBlanks": 0
      },
      "problemChoices": [],
      "problemAnswers": [
          {
              "blankPosition": null,
              "correctChoice": null,
              "correctAnswerText": "1"
          }
      ]
  },
  {
      "title": "리스트 최대값",
      "problemType": "SHORT_ANSWER_QUESTION",
      "category": "1차원 리스트",
      "difficulty": 2,
      "problemContent": {
          "content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\nnumbers = [3, 1, 4, 1, 5, 9]\\nprint(max(numbers))",
          "numberOfBlanks": 0
      },
      "problemChoices": [],
      "problemAnswers": [
          {
              "blankPosition": null,
              "correctChoice": null,
              "correctAnswerText": "9"
          }
      ]
  },
  {
      "title": "문자열 슬라이싱",
      "problemType": "SHORT_ANSWER_QUESTION",
      "category": "자료형",
      "difficulty": 2,
      "problemContent": {
          "content": "# 다음 코드를 실행했을 때 출력될 값을 적으시오.\\ntext = 'Programming'\\nprint(text[-4:])",
          "numberOfBlanks": 0
      },
      "problemChoices": [],
      "problemAnswers": [
          {
              "blankPosition": null,
              "correctChoice": null,
              "correctAnswerText": "ming"
          }
      ]
  },
    {
        "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"
            }
        ]
    }
]