-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz.js
197 lines (176 loc) · 5.05 KB
/
quiz.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
// select all elements
const start = document.getElementById("start");
const quiz = document.getElementById("quiz");
const question = document.getElementById("question");
const qImg = document.getElementById("qImg");
const choiceA = document.getElementById("A");
const choiceB = document.getElementById("B");
const choiceC = document.getElementById("C");
const choiceD = document.getElementById("D");
const counter = document.getElementById("counter");
const timeGauge = document.getElementById("timeGauge");
const progress = document.getElementById("progress");
const scoreDiv = document.getElementById("scoreContainer");
const total = document.getElementById("total");
const btn = document.getElementById("btn");
// create our questions
let questions = [
{
question: "1. The mother board contains various_______. ",
imgSrc: "img/a.jpg",
choiceA: "Integrated system",
choiceB: "Integrated Circuits",
choiceC: "Integrated Science",
choiceD: "algorithm-based",
correct: "B"
},
{
question: "2. A proxy server is used for which of the following?",
imgSrc: "img/b.jpg",
choiceA: "To provide security against unauthorised users",
choiceB: "To process client requests for web pages",
choiceC: "To process client requests for database access",
choiceD: "To provide TCP/IP",
correct: "B"
},
{
question:
"3. __________Is a mechanism by which all the content in a specified storage areas are written as output.",
imgSrc: "img/c.jpg",
choiceA: "Scheduling",
choiceB: "Logging",
choiceC: "Chumping",
choiceD: "Dumping",
correct: "D"
},
{
question:
"4. A process known as ____________ is used by large retailers to study trends.",
imgSrc: "img/d.png",
choiceA: "Data mining",
choiceB: "POS(Point of Sale)",
choiceC: "Data selection",
choiceD: "Data conversion",
correct: "A"
},
{
question:
"5. ______ Is the execution of at least two different programs simultaneously,",
imgSrc: "img/e.jpg",
choiceA: " Multiprocessing",
choiceB: "Multi programming",
choiceC: "Recovery",
choiceD: "Integrity",
correct: "A"
}
];
// create some variables
const lastQuestion = questions.length - 1;
let runningQuestion = 0;
let count = 0;
const questionTime = 15; // 10s
const gaugeWidth = 150; // 150px
const gaugeUnit = gaugeWidth / questionTime;
let TIMER;
let score = 0;
// render a question
function renderQuestion() {
let q = questions[runningQuestion];
question.innerHTML = "<p>" + q.question + "</p>";
qImg.innerHTML = "<img src=" + q.imgSrc + ">";
choiceA.innerHTML = q.choiceA;
choiceB.innerHTML = q.choiceB;
choiceC.innerHTML = q.choiceC;
choiceD.innerHTML = q.choiceD;
}
start.addEventListener("click", startQuiz);
// start quiz
function startQuiz() {
start.style.display = "none";
renderQuestion();
quiz.style.display = "block";
renderProgress();
renderCounter();
TIMER = setInterval(renderCounter, 1000); // 1000ms = 1s
}
// render progress
function renderProgress() {
for (let qIndex = 0; qIndex <= lastQuestion; qIndex++) {
progress.innerHTML += "<div class='prog' id=" + qIndex + "></div>";
}
}
// counter render
function renderCounter() {
if (count <= questionTime) {
counter.innerHTML = count;
timeGauge.style.width = count * gaugeUnit + "px";
count++;
} else {
count = 0;
// change progress color to red
answerIsWrong();
if (runningQuestion < lastQuestion) {
runningQuestion++;
renderQuestion();
} else {
// end the quiz and show the score
clearInterval(TIMER);
scoreRender();
}
}
}
// checkAnwer
function checkAnswer(answer) {
if (answer == questions[runningQuestion].correct) {
// answer is correct
score++;
// change progress color to green
answerIsCorrect();
} else {
// answer is wrong
// change progress color to red
answerIsWrong();
}
count = 0;
if (runningQuestion < lastQuestion) {
runningQuestion++;
renderQuestion();
} else {
// end the quiz and show the score
clearInterval(TIMER);
scoreRender();
}
}
// answer is correct
function answerIsCorrect() {
document.getElementById(runningQuestion).style.backgroundColor = "#0f0";
}
// answer is Wrong
function answerIsWrong() {
document.getElementById(runningQuestion).style.backgroundColor = "#f00";
}
// score render
function scoreRender() {
scoreDiv.style.display = "block";
total.style.display = "block";
// calculate the amount of question percent answered by the user
const scorePerCent = Math.round((100 * score) / questions.length);
const totalScore = Math.round(score);
// choose the image based on the scorePerCent
let img =
scorePerCent >= 80
? "img/5.png"
: scorePerCent >= 60
? "img/4.png"
: scorePerCent >= 40
? "img/3.png"
: scorePerCent >= 20
? "img/2.png"
: "img/1.png";
scoreDiv.innerHTML = "<img src=" + img + ">";
scoreDiv.innerHTML += "<p>" + scorePerCent + "%</p>";
total.innerHTML = "<p> Total=" + totalScore + "</p>";
}
function btnn() {
location.reload();
}