Manual Quiz App
Back to Home

Anonymous Quiz

Upload Quiz JSON

Drag and drop your quiz file here, or click to browse

Accepts only .json files

Expected Format:

[
  {
    "id": 1,
    "type": "multiple-choice",
    "question": "What is 2+2?",
    "choices": {
      "a": "3", "b": "4",
      "c": "5", "d": "6"
    },
    "answer": "b"
  },
  {
    "id": 2,
    "type": "abbreviation",
    "question": "HTTP",
    "answer": "HyperText Transfer Protocol"
  }
]