Online Exam System
Time Left: 60:00
${index + 1}. ${question.q}
`;
html += ``;
examDiv.innerHTML += html;
});
}
function submitExam() {
clearInterval(timer);
let score = 0;
questions.forEach((question, index) => {
let selected = document.querySelector(`input[name='q${index}']:checked`);
if (selected && selected.value === question.answer) {
score++;
}
});
document.getElementById("result").innerText = `Your Score: ${score}/${questions.length}`;
}
loadExam();

0 Comments