-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestionBank.js
93 lines (92 loc) · 3.04 KB
/
questionBank.js
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
export const questions = [
{
question: "What is 11 x 2?",
answers: [
{ option: "12", correct: false },
{ option: "22", correct: true },
{ option: "21", correct: false },
{ option: "20", correct: false }
]
},
{
question: "Which horoscope sign is a fish?",
answers: [
{ option: "Aquarius", correct: false },
{ option: "Cancer", correct: false },
{ option: "Pisces", correct: true },
{ option: "Taurus", correct: false },
]
},
{
question: "Where was tea invented?",
answers: [
{ option: "England", correct: false },
{ option: "USA", correct: false },
{ option: "China", correct: true },
{ option: "Japan", correct: false },
]
},
{
question: "How many bones does an adult human have?",
answers: [
{ option: "200", correct: false },
{ option: "206", correct: true },
{ option: "216", correct: false },
{ option: "250", correct: false },
]
},
{
question: "Which country drinks the most amount of coffee per person?",
answers: [
{ option: "Finland", correct: true },
{ option: "Italy", correct: false },
{ option: "Colombia", correct: false },
{ option: "Japan", correct: false },
]
},
{
question: "Where were French fries invented?",
answers: [
{ option: "France", correct: false },
{ option: "Belgium", correct: true },
{ option: "Colombia", correct: false },
{ option: "The US", correct: false },
]
},
{
question: "What is the hardest natural substance on planet earth?",
answers: [
{ option: "Jade", correct: false },
{ option: "Gold", correct: false },
{ option: "Platinum", correct: false },
{ option: "Diamod", correct: true },
]
},
{
question: "In which country was the game chess invented?",
answers: [
{ option: "India", correct: true },
{ option: "China", correct: false },
{ option: "Japan", correct: false },
{ option: "Greece", correct: false },
]
},
{
question: "What is the largest internal organ in the human body?",
answers: [
{ option: "Lungs", correct: false },
{ option: "Heart", correct: false },
{ option: "Kidneys", correct: false },
{ option: "Liver", correct: true },
]
},
{
question: "What is the percentage of the Earth covered by water?",
answers: [
{ option: "51%", correct: false },
{ option: "61%", correct: false },
{ option: "71%", correct: true },
{ option: "81%", correct: false },
]
},
]