Admin Panel
Add, manage, and bulk import MCQs
Add New MCQ
Bulk Import (JSON)
Upload a JSON file containing an array of MCQ objects. Each object should have: question, options (array of 4), correctIndex (0-3), topic, difficulty, explanation
Example JSON format:
[
{
"question": "Which muscle is supplied by the axillary nerve?",
"options": ["Supraspinatus", "Infraspinatus", "Deltoid", "Teres major"],
"correctIndex": 2,
"topic": "Upper Limb",
"difficulty": "easy",
"explanation": "The axillary nerve (C5, C6) supplies the deltoid and teres minor muscles."
}
]