-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestions.json
More file actions
58 lines (58 loc) · 1.46 KB
/
questions.json
File metadata and controls
58 lines (58 loc) · 1.46 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
{
"General Knowledge": [
{
"question": "What is the capital of France?",
"options": [
"Paris",
"London",
"Berlin",
"Rome"
],
"answer": "Paris"
},
{
"question": "Which planet is known as the Red Planet?",
"options": [
"Earth",
"Mars",
"Jupiter",
"Venus"
],
"answer": "Mars"
}
],
"Science": [
{
"question": "What is the chemical symbol for water?",
"options": [
"H2O",
"O2",
"CO2",
"H2"
],
"answer": "H2O"
},
{
"question": "What gas do plants absorb from the atmosphere?",
"options": [
"Oxygen",
"Carbon Dioxide",
"Nitrogen",
"Hydrogen"
],
"answer": "Carbon Dioxide"
}
],
"Programming": [
{
"question": "What does 'HTML' stands for?",
"options": [
"High Transfer Machine Language",
"Hyperlink and Text Management Language",
"Hyper Text Markup Language",
"Home Tool Markup Language"
],
"answer": "Hyper Text Markup Language"
}
]
}