Import Questions

Upload a JSON file to add questions to the bank. See format guide

Drag & drop your JSON file here

or

Quick Format Reference

{
  "questions": [
    {
      "section": "CP",          // CP, CARS, BB, or PS
      "topic": "General Chemistry",
      "difficulty": 2,           // 1=Easy, 2=Medium, 3=Hard
      "stem": "Question text...",
      "choiceA": "Answer A",
      "choiceB": "Answer B",
      "choiceC": "Answer C",
      "choiceD": "Answer D",
      "correctAnswer": "A",     // A, B, C, or D
      "explanation": "Why A is correct..."
    },
    {
      "section": "CARS",
      "passage": {
        "title": "Passage Title",
        "content": "Passage text..."
      },
      "questions": [
        {
          "stem": "Question...",
          "choiceA": "...", "choiceB": "...",
          "choiceC": "...", "choiceD": "...",
          "correctAnswer": "B",
          "explanation": "..."
        }
      ]
    }
  ]
}