Tutorial to Get Started
Follow these simple steps to create and use your own quiz rooms.
1. Collect Your Questions
Prepare your multiple-choice questions. Each question should have:
- Clear question text
- Four answer options
- One correct answer
- Optional explanation
2. Format Questions
Use AI tools like ChatGPT to format your questions according to our JSON schema:
{
"title": "Your Quiz Title",
"description": "Optional description of your quiz",
"questions": [
{
"id": "q1",
"question": "Your question text here?",
"options": [
"Option A",
"Option B",
"Option C",
"Option D"
],
"correctAnswer": 0,
"explanation": "Optional explanation of the correct answer"
}
]
}
Use this prompt with ChatGPT:
Please help me create a multiple choice quiz with the following requirements:
1. Follow this JSON schema exactly:
{
"title": "Your Quiz Title",
"description": "Optional description of your quiz",
"questions": [
{
"id": "q1",
"question": "Your question text here?",
"options": [
"Option A",
"Option B",
"Option C",
"Option D"
],
"correctAnswer": 0,
"explanation": "Optional explanation of the correct answer"
}
]
}
2. Guidelines:
- Create clear, unambiguous questions
- Each question should have 4 options
- Include explanations for correct answers
- Make sure correctAnswer index matches the correct option (0-3)
- Generate at least 10 questions
- Keep questions focused on a single topic
3. Topic: [Your topic here]
Please format the response as a valid JSON file that I can directly use.
3. Save as JSON
Save the formatted questions as a .json file on your computer. Make sure the file:
- Has a .json extension
- Contains valid JSON format
- Follows our schema exactly