MCQ JSON Format Guide

Learn how to structure your JSON data for the MCQ Playground.

Required Fields

Example JSON

{
  "title": "My Quiz",
  "questions": [
    {
      "question": "What is 2+2?",
      "options": ["2", "3", "4", "5"],
      "answer": "4",
      "explanation": "Basic arithmetic"
    }
  ]
}
      
Try in Playground