Quiz Test OSI Data Link Layer

Quiz test OSI Data Link Layer to challenge your understanding of its functions and significance. Enhance your networking skills with our comprehensive quiz.
Review needed! Study the What is a Data link Layer?
Try again after reviewing the material.
`} `; } function submitQuiz() { if (quizSubmitted) return; const unanswered = []; questions.forEach((q, index) => { const inputs = document.querySelectorAll(`input[name="q${index}"]`); const answered = Array.from(inputs).some(input => input.checked); if (!answered) { unanswered.push(document.querySelectorAll('.question-box')[index]); } }); if (unanswered.length > 0) { unanswered.forEach(q => q.classList.add('unanswered')); alert('Please answer all questions before submitting!'); return; } quizSubmitted = true; document.querySelectorAll('.question-box').forEach(q => q.classList.remove('unanswered')); showResults(); } generateQuestions();