-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathquiz.json
34 lines (33 loc) · 903 Bytes
/
quiz.json
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
{
"title": "Geography Quiz",
"description": "A quiz about geography",
"time": "20m",
"questions": [
{
"type": "simple-text",
"question": "What is the capital of France?",
"answer": "Paris",
"points": 1,
"time": "10s"
},
{
"type": "multi-choice",
"question": "What countries border Spain?",
"choices": ["France", "Portugal", "Andorra", "Morocco"],
"answer": ["France", "Portugal", "Andorra"],
"time": "20s"
},
{
"type": "single-choice",
"question": "What is the largest country in the world?",
"choices": ["Russia", "Canada", "China", "USA"],
"answer": "Russia",
"time": "15s"
},
{
"type": "code",
"question": "Write a JavaScript function that returns the sum of two numbers",
"answer": "function sum(a, b) { return a + b; }",
"time": "30s"
}
}