1. Create 4-Choice Quizzes
Use this prompt to create 4-choice questions for vocabulary, exams, or trivia. Copy and paste the text below into an AI.
Please create 5 multiple-choice questions on the following theme and output them in the specified JSON format.
Theme: [β
Enter the theme you want to learn (e.g., Frequently used Spanish words) β
]
Language: en
γFormat to strictly followγ
{
"id": "β
Any alphanumeric string (e.g., pack_1) β
",
"type": "quiz",
"schemaVersion": 1,
"title": "β
Title of the learning pack β
",
"language": "en",
"questions": [
{
"id": "q1",
"question": "β
Question text β
",
"choices": ["Choice 1", "Choice 2", "Choice 3", "Choice 4"],
"answerIndex": 0,
"explanation": "β
Explanation text β
",
"tags": ["β
Tag 1 β
", "β
Tag 2 β
"]
}
]
}
γRulesγ
- Specify 'tags' as an array of strings, setting about 1 to 3 keywords related to each question.
- The 'choices' array must contain exactly 4 items.
- The 'answerIndex' must be a number from 0 to 3 (0 represents the first choice).
- Assign a unique alphanumeric string to each question's 'id' (e.g., "q1", "q2", "q3"...).
- The output must be pure text starting with { and ending with }. Never use markdown formatting (such as ```json).
- To prevent JSON syntax errors, if you use double quotes (") within a string, always escape them (\").
- Do not use line breaks (\n) in the middle of a string. Even if the explanation is long, output it in a single line.