-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestions.json
More file actions
37 lines (37 loc) · 1006 Bytes
/
questions.json
File metadata and controls
37 lines (37 loc) · 1006 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"title": "Quiz Time!",
"showProgressBar": "bottom",
"startSurveyText": "Let's get started!",
"showNavigationButtons": false,
"elements": [{
"type": "radiogroup",
"name": "civilwar",
"title": "When was the American Civil War?",
"isRequired": true,
"choices": [
"1796-1803", "1810-1814", "1861-1865", "1939-1945"
],
"correctAnswer": "1861-1865"
}, {
"type": "radiogroup",
"name": "capital",
"title": "What is the capital of France?",
"isRequired": true,
"choices": [
"Paris", "London", "Berlin", "Madrid"
],
"correctAnswer": "Paris"
}, {
"type": "checkbox",
"name": "favoriteFood",
"title": "What is your favorite food?",
"choices": [
"Pizza",
"Popcorn",
"Plantains",
"Poy"
],
"isRequired": true,
"correctAnswer": ["Pizza", "Popcorn"]
}]
}