Quiz Test – Common Network Port Numbers
Test your knowledge with our comprehensive Quiz Test: Common Network Port Numbers. Learn the essential port numbers and enhance your networking skills with detailed explanations.
Test your knowledge with our comprehensive Quiz Test: Common Network Port Numbers. Learn the essential port numbers and enhance your networking skills with detailed explanations.
You scored ${score}/${questions.length * 5} (${percentage.toFixed(1)}%)
Please review the material: Common Network Port Numbers
Explanation: ${q.explanation}
`; }); resultDiv.innerHTML = resultHTML; } function submitQuiz() { // Validate all questions answered let allAnswered = true; shuffledQuestions.forEach((q, index) => { const answered = document.querySelectorAll(`input[name="q${index}"]:checked`).length > 0; if (!answered) { allAnswered = false; document.querySelector(`#q${index}`).style.backgroundColor = '#fff3cd'; } }); if (!allAnswered) { alert('Please answer all questions before submitting!'); return; } // Disable inputs document.querySelectorAll('input').forEach(input => input.disabled = true); document.querySelectorAll('.question').forEach(q => q.classList.add('disabled')); // Calculate and display results const score = calculateScore(); showResults(score); } // Initialize quiz createQuiz();