CBSE Class 10 Science Electricity Online Test Set A

Attempt the CBSE Class 10 Science Electricity Online Test Set A below. This practice set is designed for the Class 10 2025-26 academic session and follows the latest NCERT and CBSE pattern. By solving these Science Chapter 11 Electricity objective-type questions, Class 10 students can evaluate their conceptual clarity and prepare for upcoming exams. Use this free online mock test for Class 10 Science for chapter Chapter 11 Electricity to practice important questions and check your results instantly. We have also provided MCQ Questions for Class 10 Science with answers for Chapter 11 Electricity to assist in your detailed revision.

Online Mock Test for Class 10 Science Chapter 11 Electricity

In the online practice Mock test for Science Chapter 11 Electricity you can see the list of questions. Just click on the right option and then click 'submit' to check your answers and score instantly. This mock test will help Class 10 students to check understanding of all topics in Chapter 11 Electricity. This includes multiple choice questions from Class 10 Science from your new syllabus and book to help you revise quickly.

Chapter 11 Electricity Science Class 10 Practice Test

; const quizForm = document.getElementById("quiz-form"); mcqs.forEach((mcq, index) => { const questionDiv = document.createElement("div"); questionDiv.classList.add("question"); questionDiv.innerHTML = `

${index + 1}. ${mcq.question}

${mcq.options .map( (option, i) => ` ` ) .join("")} `; quizForm.appendChild(questionDiv); }); window.calculateResults = function () { const formData = new FormData(quizForm); let score = 0; mcqs.forEach((mcq, index) => { const selectedAnswer = formData.get(`q${index}`); const questionDiv = quizForm.children[index]; const labels = questionDiv.querySelectorAll("label"); labels.forEach((label, i) => { const input = label.querySelector("input"); const feedback = label.querySelector(".feedback"); const optionValue = String.fromCharCode(97 + i); // Highlight correct answers if (optionValue === mcq.answer) { label.classList.add("correct"); feedback.style.display = "inline"; feedback.textContent = "✓"; feedback.classList.add("correct"); } // Mark incorrect answers if (selectedAnswer === optionValue && selectedAnswer !== mcq.answer) { label.classList.add("incorrect"); feedback.style.display = "inline"; feedback.textContent = "✗"; feedback.classList.add("incorrect"); } }); if (selectedAnswer === mcq.answer) score++; }); const resultDiv = document.getElementById("results"); resultDiv.textContent = `You scored ${score} out of ${mcqs.length}! 🎉`; }; })();