-
Notifications
You must be signed in to change notification settings - Fork 0
Quizzl Custom Quiz Structure
Stuart edited this page Mar 3, 2018
·
5 revisions
An example set of questions used by the Quizzl.me system.
{
"about":{
"description":"This is an example quiz to demonstrate Quizzl.",
"timeLimit":5,
"questionLimit":2,
"randomise":true,
"allowSkip":false,
"allowBack":false
},
"quiz":[
{
"question":"What is the capital of France",
"answers":[
"London",
"Paris",
"Rome"
],
"correct":1
},
{
"question":"How many continents are there in the world",
"answers":[
"1",
"4",
"5",
"7"
],
"correct":3
},
{
"question":"How many legs does a spider typically have",
"answers":[
"7",
"8"
],
"correct":1
}
]
}