-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstructions.txt
96 lines (95 loc) · 2.97 KB
/
instructions.txt
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
Create a absurd quiz with 5 questions.
Each question should be funny and absurd without being offensive.
Apart from one question that has to be a difficult mathematical question.
A question should have 3 possible answers, 2 incorrect and 1 correct.
In each answers array set 1 correct property to boolean true and the rest to false.
The quiz data has to be formatted as a JSON like the following:
{
"quiz": [
{
"question": "question 1",
"answers": [
{
"text": "possible answer text",
"correct": true
},
{
"text": "possible answer text",
"correct": false
},
{
"text": "possible answer text",
"correct": false
}
]
},
{
"question": "question 2",
"answers": [
{
"text": "possible answer text",
"correct": true
},
{
"text": "possible answer text",
"correct": false
},
{
"text": "possible answer text",
"correct": false
}
]
},
{
"question": "question 3",
"answers": [
{
"text": "possible answer text",
"correct": true
},
{
"text": "possible answer text",
"correct": false
},
{
"text": "possible answer text",
"correct": false
}
]
},
{
"question": "question 4",
"answers": [
{
"text": "possible answer text",
"correct": true
},
{
"text": "possible answer text",
"correct": false
},
{
"text": "possible answer text",
"correct": false
}
]
},
{
"question": "question 5",
"answers": [
{
"text": "possible answer text",
"correct": true
},
{
"text": "possible answer text",
"correct": false
},
{
"text": "possible answer text",
"correct": false
}
]
}
]
}