{"id":1069,"date":"2026-08-06T03:23:06","date_gmt":"2026-08-06T03:23:06","guid":{"rendered":"https:\/\/online.vibrantonlineacademy.com\/?page_id=1069"},"modified":"2026-08-06T03:23:07","modified_gmt":"2026-08-06T03:23:07","slug":"brave-hearts-indias-freedom-struggle-mcqs-set-8","status":"publish","type":"page","link":"https:\/\/online.vibrantonlineacademy.com\/index.php\/brave-hearts-indias-freedom-struggle-mcqs-set-8\/","title":{"rendered":"Brave Hearts \u2013 India&#8217;s Freedom Struggle MCQS\u00a0 SET &#8211; 8"},"content":{"rendered":"\n<div class=\"quiz-container\" id=\"quiz\"><\/div>\n\n<button class=\"submit-btn\" onclick=\"submitQuiz()\">Submit Quiz<\/button>\n<button class=\"submit-btn\" onclick=\"restartQuiz()\">Restart Quiz<\/button>\n\n<div class=\"result\" id=\"result\"><\/div>\n\n\n<script>\nconst questions = [\n  { q: \"The Revolt of 1857 began at:\", a: [\"Delhi\", \"Meerut\", \"Kanpur\", \"Lucknow\"], correct: 1 },\n\n  { q: \"Who was the first martyr of the Revolt of 1857?\", a: [\"Tatya Tope\", \"Mangal Pandey\", \"Rani Lakshmibai\", \"Nana Sahib\"], correct: 1 },\n\n  { q: \"Who led the Revolt of 1857 from Kanpur?\", a: [\"Kunwar Singh\", \"Tatya Tope\", \"Nana Sahib\", \"Bahadur Shah II\"], correct: 2 },\n\n  { q: \"Who led the Revolt of 1857 from Bihar?\", a: [\"Kunwar Singh\", \"Mangal Pandey\", \"Begum Hazrat Mahal\", \"Tatya Tope\"], correct: 0 },\n\n  { q: \"Who led the Revolt of 1857 in Lucknow?\", a: [\"Rani Lakshmibai\", \"Begum Hazrat Mahal\", \"Nana Sahib\", \"Bahadur Shah II\"], correct: 1 },\n\n  { q: \"Who was declared the Emperor of India during the Revolt of 1857?\", a: [\"Bahadur Shah II\", \"Akbar II\", \"Shah Alam II\", \"Nana Sahib\"], correct: 0 },\n\n  { q: \"The partition of Bengal took place in:\", a: [\"1903\", \"1905\", \"1907\", \"1911\"], correct: 1 },\n\n  { q: \"The partition of Bengal was cancelled in:\", a: [\"1909\", \"1910\", \"1911\", \"1912\"], correct: 2 },\n\n  { q: \"The Muslim League was founded in:\", a: [\"1905\", \"1906\", \"1907\", \"1908\"], correct: 1 },\n\n  { q: \"Where was the All India Muslim League founded?\", a: [\"Delhi\", \"Lahore\", \"Dhaka\", \"Lucknow\"], correct: 2 },\n\n  { q: \"The Surat Split in the Indian National Congress took place in:\", a: [\"1905\", \"1906\", \"1907\", \"1908\"], correct: 2 },\n\n  { q: \"The Surat Split divided the Congress into:\", a: [\"North and South\", \"Moderates and Extremists\", \"Hindus and Muslims\", \"Congress and League\"], correct: 1 },\n\n  { q: \"Who was known as the 'Father of Revolutionary Movement in India'?\", a: [\"Aurobindo Ghosh\", \"Bal Gangadhar Tilak\", \"Vinayak Damodar Savarkar\", \"Bhagat Singh\"], correct: 2 },\n\n  { q: \"Who founded the Abhinav Bharat Society?\", a: [\"Aurobindo Ghosh\", \"V.D. Savarkar\", \"Lala Lajpat Rai\", \"Subhas Chandra Bose\"], correct: 1 },\n\n  { q: \"Who founded the Anushilan Samiti?\", a: [\"Aurobindo Ghosh\", \"Pramathanath Mitra\", \"V.D. Savarkar\", \"Rash Behari Bose\"], correct: 1 },\n\n  { q: \"The Lucknow Pact was signed in:\", a: [\"1915\", \"1916\", \"1917\", \"1918\"], correct: 1 },\n\n  { q: \"The Lucknow Pact was signed between the Congress and:\", a: [\"Justice Party\", \"Muslim League\", \"Communist Party\", \"Forward Bloc\"], correct: 1 },\n\n  { q: \"Who founded the Home Rule League in Poona?\", a: [\"Annie Besant\", \"Bal Gangadhar Tilak\", \"Mahatma Gandhi\", \"Jawaharlal Nehru\"], correct: 1 },\n\n  { q: \"The Montagu Declaration was announced in:\", a: [\"1915\", \"1916\", \"1917\", \"1919\"], correct: 2 },\n\n  { q: \"The Jallianwala Bagh massacre took place on:\", a: [\"13 April 1919\", \"15 August 1919\", \"30 January 1919\", \"26 January 1920\"], correct: 0 },\n\n  { q: \"The Hunter Commission was appointed to investigate:\", a: [\"Partition of Bengal\", \"Jallianwala Bagh massacre\", \"Quit India Movement\", \"Salt Satyagraha\"], correct: 1 },\n\n  { q: \"The Chauri Chaura incident occurred in:\", a: [\"1920\", \"1921\", \"1922\", \"1923\"], correct: 2 },\n\n  { q: \"Why did Mahatma Gandhi withdraw the Non-Cooperation Movement?\", a: [\"British request\", \"Chauri Chaura violence\", \"World War II\", \"Simon Commission\"], correct: 1 },\n\n  { q: \"Who founded the Swaraj Party with Motilal Nehru?\", a: [\"C.R. Das\", \"Jawaharlal Nehru\", \"Subhas Chandra Bose\", \"Rajendra Prasad\"], correct: 0 },\n\n  { q: \"The Civil Disobedience Movement officially began with the:\", a: [\"Quit India Resolution\", \"Dandi March\", \"Lucknow Pact\", \"Home Rule Movement\"], correct: 1 }\n];\n\nfunction renderQuiz() {\n    const quizDiv = document.getElementById(\"quiz\");\n    quizDiv.innerHTML = \"\";\n    questions.forEach((q, i) => {\n      let html = `<div class=\"question\" id=\"q${i}\"><h4>Q${i + 1}. ${q.q}<\/h4><div class=\"answers\">`;\n      q.a.forEach((opt, j) => {\n        html += `<label><input type=\"radio\" name=\"q${i}\" value=\"${j}\"> ${opt}<\/label>`;\n      });\n      html += \"<\/div><\/div>\";\n      quizDiv.innerHTML += html;\n    });\n  }\n\n  function submitQuiz() {\n    let score = 0;\n    questions.forEach((q, i) => {\n      const selected = document.querySelector(`input[name=\"q${i}\"]:checked`);\n      const labels = document.querySelectorAll(`#q${i} .answers label`);\n      labels.forEach(label => label.classList.remove(\"correct\", \"wrong\"));\n      if (selected) {\n        const answer = parseInt(selected.value);\n        if (answer === q.correct) {\n          score++;\n        } else {\n          labels[answer].classList.add(\"wrong\");\n        }\n        labels[q.correct].classList.add(\"correct\");\n      }\n    });\n    document.getElementById(\"result\").innerHTML = `\u2705 You scored <strong>${score}<\/strong> out of <strong>${questions.length}<\/strong>.`;\n    document.querySelector(\"button[onclick='submitQuiz()']\").disabled = true;\n  }\n\n  function restartQuiz() {\n    document.getElementById(\"quiz\").innerHTML = \"\";\n    document.getElementById(\"result\").innerHTML = \"\";\n    document.querySelector(\"button[onclick='submitQuiz()']\").disabled = false;\n    renderQuiz();\n  }\n\n  \/\/ Render quiz when the page loads\n  document.addEventListener(\"DOMContentLoaded\", renderQuiz);\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>Submit Quiz Restart Quiz<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1069","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/online.vibrantonlineacademy.com\/index.php\/wp-json\/wp\/v2\/pages\/1069","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/online.vibrantonlineacademy.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/online.vibrantonlineacademy.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/online.vibrantonlineacademy.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/online.vibrantonlineacademy.com\/index.php\/wp-json\/wp\/v2\/comments?post=1069"}],"version-history":[{"count":1,"href":"https:\/\/online.vibrantonlineacademy.com\/index.php\/wp-json\/wp\/v2\/pages\/1069\/revisions"}],"predecessor-version":[{"id":1071,"href":"https:\/\/online.vibrantonlineacademy.com\/index.php\/wp-json\/wp\/v2\/pages\/1069\/revisions\/1071"}],"wp:attachment":[{"href":"https:\/\/online.vibrantonlineacademy.com\/index.php\/wp-json\/wp\/v2\/media?parent=1069"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}