forked from QuarkPixel/quiz-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestions.example.json
More file actions
104 lines (104 loc) · 2.41 KB
/
Copy pathquestions.example.json
File metadata and controls
104 lines (104 loc) · 2.41 KB
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
97
98
99
100
101
102
103
104
[
{
"id": "judgment_1",
"type": "judgment",
"question": "地球是太阳系中最大的行星。",
"answer": false
},
{
"id": "judgment_2",
"type": "judgment",
"question": "水的化学式是 H2O。",
"answer": true
},
{
"id": "single_1",
"type": "single",
"question": "以下哪个是 JavaScript 的包管理器?",
"options": [
{ "text": "pip" },
{ "text": "npm" },
{ "text": "cargo" },
{ "text": "gem" }
],
"answer": [1]
},
{
"id": "single_2",
"type": "single",
"question": "光在真空中的传播速度约为多少?",
"options": [
{ "text": "3×10⁶ m/s" },
{ "text": "3×10⁷ m/s" },
{ "text": "3×10⁸ m/s" },
{ "text": "3×10⁹ m/s" }
],
"answer": [2]
},
{
"id": "multiple_1",
"type": "multiple",
"question": "以下哪些是前端框架/库?",
"options": [
{ "text": "React" },
{ "text": "Django" },
{ "text": "Vue" },
{ "text": "Flask" }
],
"answer": [0, 2]
},
{
"id": "multiple_2",
"type": "multiple",
"question": "以下哪些元素属于惰性气体?",
"options": [
{ "text": "氦 (He)" },
{ "text": "氧 (O)" },
{ "text": "氖 (Ne)" },
{ "text": "氮 (N)" }
],
"answer": [0, 2]
},
{
"id": "blank_1",
"type": "blank",
"question": "取得进步",
"answer": "make progress"
},
{
"id": "blank_2",
"type": "blank",
"question": "平均而言(括号内容可选:写不写 an 都算对)",
"answer": "on (an) average"
},
{
"id": "blank_3",
"type": "blank",
"question": "生病(斜杠分支:ill 或 sick 均可)",
"answer": "fall ill/sick"
},
{
"id": "blank_4",
"type": "blank",
"question": "得出结论(多动词可选)",
"answer": "draw/reach/come to a conclusion"
},
{
"id": "blank_5",
"type": "blank",
"question": "习惯于……(括号内词级替换:be 或 get 均可,used to 可省略 be/get)",
"answer": "(be/get) used to"
},
{
"id": "blank_6",
"type": "blank",
"question": "3 × 3 = ___,4 × 4 = ___(数字填空,两空)",
"answer": ["9", "16"]
},
{
"id": "blank_7",
"type": "blank",
"question": "联系某人(等号分支:两套完整答案任选其一)",
"answer": "contact/call sb = get in touch with sb"
}
]