Home CCNA Quiz Test Types of Physical Media and Networking Cables
Illustration of physical media and networking cables with a laptop showing a Wi-Fi symbol and the text "Quiz Test."

Quiz Test Types of Physical Media and Networking Cables

Ready to test your networking knowledge? Take the Quiz Test – Types of Physical Media and Networking Cables now and see how well you know your cables and Media! Challenge yourself, learn something new, and share your score with friends. Click here to start: Take the Quiz! #NetworkingNinja #TechQuiz

Loading Bar Example

.

CCNA Practice Exam

CCNA Practice Exam

    ${shuffleArray([...questionObj.options]).map(option => `
  • ${questionObj.answer.length > 1 ? ` ${option}` : ` ${option}`}
  • `).join('')}
${questionObj.explanation}
`; return questionDiv; } function initializeExam() { const container = document.getElementById('questions-container'); questions.forEach((q, i) => { container.appendChild(createQuestionElement(q, i)); }); } function toggleSelection(element) { const input = element.querySelector('input'); if (input.type === 'radio') { const questionDiv = element.closest('.question'); questionDiv.querySelectorAll('.option').forEach(opt => { opt.classList.remove('selected'); opt.querySelector('input').checked = false; }); } input.checked = !input.checked; element.classList.toggle('selected', input.checked); } function submitExam() { const questions = document.querySelectorAll('.question'); let allAnswered = true; let totalScore = 0; questions.forEach(q => { const selected = q.querySelectorAll('input:checked'); if (selected.length === 0) { q.classList.add('unanswered'); allAnswered = false; } else { q.classList.remove('unanswered'); } }); if (!allAnswered) { alert('Please answer all questions before submitting!'); return; } questions.forEach(q => { const correctAnswers = JSON.parse(q.querySelector('.options-list').dataset.correct); const selectedValues = Array.from(q.querySelectorAll('input:checked')) .map(input => input.parentElement.dataset.value); const correctSelected = selectedValues.filter(v => correctAnswers.includes(v)).length; const scorePerOption = 5 / correctAnswers.length; const questionScore = Math.min(correctSelected * scorePerOption, 5); totalScore += questionScore; q.querySelectorAll('.option').forEach(opt => { const value = opt.dataset.value; if (correctAnswers.includes(value)) { opt.style.backgroundColor = '#d4edda'; } else if (selectedValues.includes(value)) { opt.style.backgroundColor = '#f8d7da'; } }); q.querySelector('.explanation').style.display = 'block'; }); const percentage = (totalScore / (questions.length * 5)) * 100; showResults(totalScore, percentage); } function showResults(score, percentage) { const resultContainer = document.getElementById('result-container'); resultContainer.innerHTML = `
Score: ${score.toFixed(2)}/${questions.length * 5} (${percentage.toFixed(2)}%)
`; const marioContainer = document.getElementById('mario'); if (percentage >= 82.5) { resultContainer.innerHTML += `

🎉 Congratulations! 🎊

You passed the exam!

`; marioContainer.textContent = "🎆💐🎇"; } else { resultContainer.innerHTML += `

😢 Try Again!

Review the material and try again

Comprehensive Guide to Types of Physical Media and Networking Cables
`; marioContainer.textContent = "(>_<)"; } document.querySelectorAll('input').forEach(input => input.disabled = true); } window.onload = initializeExam;

About This Content

Author Expertise: 15 years of experience in NetworkUstad's lead networking architect with CCIE certification. Specializes in CCNA exam preparation and enterprise network…. Certified in: BSC, CCNA, CCNP