-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz_sc.js
152 lines (142 loc) · 5.2 KB
/
quiz_sc.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
// Configuration constants
// Ramodmize question list
const RANDOM_QUESTION_LIST = true
// As next question, pick a random question -> questions will be asked endless
const RANDOM_QUESTION_PICK = false
// Public variables
questionID = 0;
isStarted = 0;
isChecked = 0;
answeredTotal = 0;
answeredCorrect = 0;
function Check() {
if (isStarted == 0) {
if (RANDOM_QUESTION_LIST) {
data.sort(() => Math.random() - 0.5);
}
drawQuestion();
isStarted = 1;
return;
}
if (isChecked == 0) {
// Check if radio buttons have been created
if ( data[questionID].correct.length == 1) {
answeredTotal++;
answer_id = -1;
// Find out which radio button was checked
for (let i = 0; i < data[questionID].answers.length; i++) {
id = "a" + i
if (document.getElementById(id).checked) {
answer_id = i;
}
}
// No radio button was checked
if (answer_id == -1) {
document.getElementById("correction").innerHTML = "No button checked."
answeredTotal--;
return;
}
// Correct radio button was checked
else if (answer_id == data[questionID].correct[0]) {
document.getElementById("correction").innerHTML = "<b>Correct!<b>"
answeredCorrect++;
}
// Wrong radio button was checked
else {
document.getElementById("correction").innerHTML = "<b>Wrong answer!</b> <br>" +
"solution is: <br>" + data[questionID].answers[data[questionID].correct[0]];
}
}
// It is a multiple choice question.
else {
answeredTotal++;
answer_id = [];
// Find out which checkboxes were checked
for (let i = 0; i < data[questionID].answers.length; i++) {
id = "a" + i
if (document.getElementById(id).checked) {
answer_id.push(i);
}
}
answer_id.sort();
sortedCorrect = data[questionID].correct.sort();
let correctAnswered = equalArray(answer_id, sortedCorrect);
// Each checked box was correct
if (correctAnswered) {
document.getElementById("correction").innerHTML = "<b>Correct!<b>"
answeredCorrect++;
}
// Wrong checkboxes were checked
else {
text = "<b>Wrong answer!</b> <br> Correct are: <br>";
for (let i = 0; i < data[questionID].correct.length; i++) {
text += "[" + data[questionID].correct[i] + "] " + data[questionID].answers[data[questionID].correct[i]] + "<br>";
}
document.getElementById("correction").innerHTML = text;
}
}
isChecked = 1;
updateStatistics();
return;
}
// draw next question or restart quiz.
if (RANDOM_QUESTION_PICK) {
questionID = Math.floor(Math.random() * (data.length + 1));
}
else {
questionID++;
if(questionID >= data.length) {
document.getElementById("correction").innerHTML = "You reached the end! <br> Press submit to restart!";
document.getElementById("question").innerHTML = "";
document.getElementById("answers").innerHTML = "";
questionID = 0;
isStarted = 0;
isChecked = 0;
return;
}
}
drawQuestion();
isChecked = 0;
}
function updateStatistics() {
if (answeredTotal == 0) {
return;
}
document.getElementById("statistics").innerHTML = "Answered questions: " + answeredTotal +
"<br>Answered correct: " + answeredCorrect + "<br>Score: " + ~~((answeredCorrect / answeredTotal)*100) + "%";
}
function drawQuestion() {
document.getElementById("correction").innerHTML = "";
document.getElementById("question").innerHTML = data[questionID].question;
let text = "";
// Check if radio buttons have been created
if ( data[questionID].correct.length == 1) {
for (let i = 0; i < data[questionID].answers.length; i++) {
idc = "a" + i + "c"
id = "a" + i
text += '<input type="radio" id="' + id + '" name="answerPick">' +
'<label for="' + id + '" id="' + idc + '">' + data[questionID].answers[i] + '</label><br>'
}
}
// It is a multiple choice question.
else {
for (let i = 0; i < data[questionID].answers.length; i++) {
idc = "a" + i + "c"
id = "a" + i
text += '<input type="checkbox" id="' + id + '" name="answerPick">' +
'<label for= "' + id + '" id= "' + idc + '">' + data[questionID].answers[i] + '</label><br>'
}
}
document.getElementById("answers").innerHTML = text;
}
function equalArray(array1, array2) {
if (array1.length === array2.length) {
return array1.every((element, index) => {
if (element === array2[index]) {
return true;
}
return false;
});
}
return false;
}