-
Notifications
You must be signed in to change notification settings - Fork 0
/
grade1.js
88 lines (82 loc) · 1.49 KB
/
grade1.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
// by SHYAKA Aimé ©
// creating an array and passing the number, questions, options, and answers
let questions = [
{
numb: 1,
question: "2x11=?",
answer: "22",
options: [
"10",
"15",
"25",
"22"
]
},
{
numb: 2,
question: "which mammal is capable to fly?",
answer: "Bat",
options: [
"Humman",
"Bat",
"Whale",
"Rabbit"
]
},
{
numb: 3,
question: "How many legs has a lizard?",
answer: "4",
options: [
"2",
"4",
"6",
"8"
]
},
{
numb: 4,
question: "which word is not a time stamp?",
answer: "shoes",
options: [
"later",
"tomorrow",
"next week",
"shoes"
]
},
{
numb: 5,
question: "which phrase suggests it is in the future tense?",
answer: "I am going to",
options: [
"I am going to",
"I already have",
"i am doing it",
"i did it"
]
},
{
numb: 6,
question: "46-9=?",
answer: "37",
options: [
"100",
"37",
"5",
"none of them"
]
},
// 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"
// ]
// },
];