PG TRB English Practise Online Test 3
PG TRB English Practise Online Test 3
Select your answers and click "Submit Quiz" to see your score and review the correct choices.
// Display results
resultsDiv.textContent = `You scored ${score} out of ${totalQuestions} (${((score / totalQuestions) * 100).toFixed(2)}%)`;
resultsDiv.style.display = 'block';
// Disable form elements after submission
form.querySelectorAll('input[type="radio"]').forEach(input => input.disabled = true);
submitButton.disabled = true;
submitButton.textContent = "Quiz Completed";
}
// Initialize the quiz when the page loads
document.addEventListener('DOMContentLoaded', renderQuiz);