-
Notifications
You must be signed in to change notification settings - Fork 0
/
grade2.js
72 lines (71 loc) · 1.36 KB
/
grade2.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
//By SHYAKA Aimé ©
// creating an array and passing the number, questions, options, and answers
let questions = [
{
numb: 1,
question: "complete the sentence with correct adverb<br>who is the.....runner in the world?",
answer: "fastest",
options: [
"more fast",
"faster",
"fastest",
"more fastest"
]
},
{
numb: 2,
question: "what is the source of light in circuit?",
answer: "bulb",
options: [
"bulb",
"switch",
"buzzer",
"battery"
]
},
{
numb: 3,
question: "who is current first billionaire 2021?",
answer: "Elon Musk",
options: [
"Elon Musk",
"Steve jobs",
"Bill gates",
"mark Zuckerberg"
]
},
{
numb: 4,
question: "which of the following is not a force?",
answer: "Electricity",
options: [
"Electricity",
"upthrust",
"Gravity",
"friction"
]
},
{
numb: 5,
question: "9x5=?",
answer: "45",
options: [
"14",
"25",
"45",
"40"
]
},
// i can increase number of questions up to infinity 😂😁😊
// {
// numb: 6,
// question: "Question is Here",
// answer: "Correct answer of the question is here",
// options: [
// "Option 1",
// "option 2",
// "option 3",
// "option 4"
// ]
// },
];