MCQ
One prompt, several options, and one best answer. Organize questions into topics before publishing.
CREATOR GUIDE
Add a small bank manually, or prepare structured JSON when you have a long document. The same topic, answer timing, review, and statistics system is used for every published bank.
One prompt, several options, and one best answer. Organize questions into topics before publishing.
One shared List B of options and multiple List A prompts. Not every option must be used.
For short community MCQ banks, use Create a question bank in the library. For a large MCQ or any EMQ bank, prepare JSON with the templates below and send it to the Medu administrator for validation and import.
Keep every question under its correct topic. Use stable IDs so saved progress still points to the same question after updates.
{
"title": "My Paediatrics Bank",
"institution": "My University",
"type": "mcq",
"topics": [{
"id": "neonatology",
"title": "Neonatology",
"questions": [{
"id": "neo-001",
"prompt": "Question text",
"options": [{"id":"A","text":"Option A"},{"id":"B","text":"Option B"}],
"correctOption": "A",
"explanation": "Optional explanation"
}]
}]
}Each set owns its shared List B and all matching prompts in List A.
{
"title": "My Clinical EMQs",
"institution": "My University",
"type": "emq",
"sets": [{
"id": "renal-001",
"topic": "Renal",
"title": "Renal syndromes",
"options": [{"id":"A","text":"APSGN"},{"id":"B","text":"IgA nephropathy"}],
"items": [{
"id": "renal-001-1",
"prompt": "Clinical scenario",
"correctOption": "A",
"explanation": "Optional explanation"
}]
}]
}