-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions21.json
36 lines (36 loc) · 984 Bytes
/
questions21.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
35
36
[
{
"question": "What is your number of tokens?",
"type": "numeric",
"answers": [
{
"type": "value",
"value": 27,
"correct": true,
"feedback": "Correct."
},
{
"type": "value",
"value": 26,
"correct": false,
"feedback": "Is it possible that you forgot the end-of-file symbol?"
},
{
"type": "range",
"range": [
0, 25
],
"correct": false,
"feedback": "There seem to be some tokens missing..."
},
{
"type": "range",
"range": [
27, 10000
],
"correct": false,
"feedback": "This seem to be too many tokens!"
}
]
}
]