{"id":1050,"date":"2026-08-06T03:00:19","date_gmt":"2026-08-06T03:00:19","guid":{"rendered":"https:\/\/online.vibrantonlineacademy.com\/?page_id=1050"},"modified":"2026-08-06T03:00:19","modified_gmt":"2026-08-06T03:00:19","slug":"brave-hearts-indias-freedom-struggle-mcqs-set-2","status":"publish","type":"page","link":"https:\/\/online.vibrantonlineacademy.com\/index.php\/brave-hearts-indias-freedom-struggle-mcqs-set-2\/","title":{"rendered":"Brave Hearts \u2013 India&#8217;s Freedom Struggle MCQS\u00a0 SET &#8211; 2"},"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>\n \nconst questions = [\n  { q: \"Who was popularly known as 'Bapu'?\", a: [\"Subhas Chandra Bose\", \"Mahatma Gandhi\", \"Bhagat Singh\", \"Sardar Patel\"], correct: 1 },\n\n  { q: \"Who is known as 'Netaji'?\", a: [\"Jawaharlal Nehru\", \"Bhagat Singh\", \"Subhas Chandra Bose\", \"Bal Gangadhar Tilak\"], correct: 2 },\n\n  { q: \"Which freedom fighter was hanged at a very young age?\", a: [\"Bhagat Singh\", \"Mahatma Gandhi\", \"Jawaharlal Nehru\", \"Sardar Patel\"], correct: 0 },\n\n  { q: \"Which movement encouraged Indians to use goods made in India?\", a: [\"Salt March\", \"Swadeshi Movement\", \"Quit India Movement\", \"Non-Cooperation Movement\"], correct: 1 },\n\n  { q: \"Which movement asked people not to cooperate with the British government?\", a: [\"Non-Cooperation Movement\", \"Chipko Movement\", \"Green Revolution\", \"White Revolution\"], correct: 0 },\n\n  { q: \"Who led the Indian National Army (INA)?\", a: [\"Mahatma Gandhi\", \"Subhas Chandra Bose\", \"Bhagat Singh\", \"Sardar Patel\"], correct: 1 },\n\n  { q: \"What was the main aim of India's freedom struggle?\", a: [\"To become richer\", \"To gain independence from British rule\", \"To build more schools\", \"To increase trade\"], correct: 1 },\n\n  { q: \"Who was the first President of independent India?\", a: [\"Jawaharlal Nehru\", \"Rajendra Prasad\", \"Sardar Patel\", \"Dr. B.R. Ambedkar\"], correct: 1 },\n\n  { q: \"On which day do we celebrate Gandhi Jayanti?\", a: [\"15 August\", \"26 January\", \"2 October\", \"14 November\"], correct: 2 },\n\n  { q: \"Which freedom fighter is remembered for the slogan 'Inquilab Zindabad'?\", a: [\"Bhagat Singh\", \"Mahatma Gandhi\", \"Jawaharlal Nehru\", \"Subhas Chandra Bose\"], correct: 0 },\n\n  { q: \"The Dandi March was a protest against the British tax on:\", a: [\"Rice\", \"Sugar\", \"Salt\", \"Tea\"], correct: 2 },\n\n  { q: \"Which leader worked to unite many princely states after independence?\", a: [\"Bhagat Singh\", \"Sardar Vallabhbhai Patel\", \"Subhas Chandra Bose\", \"Lal Bahadur Shastri\"], correct: 1 },\n\n  { q: \"Who wrote the National Anthem 'Jana Gana Mana'?\", a: [\"Bankim Chandra Chattopadhyay\", \"Rabindranath Tagore\", \"Sarojini Naidu\", \"Subhas Chandra Bose\"], correct: 1 },\n\n  { q: \"Which woman freedom fighter is known as the 'Nightingale of India'?\", a: [\"Rani Lakshmibai\", \"Sarojini Naidu\", \"Kasturba Gandhi\", \"Annie Besant\"], correct: 1 },\n\n  { q: \"Who fought bravely in the Revolt of 1857 at Jhansi?\", a: [\"Rani Lakshmibai\", \"Sarojini Naidu\", \"Annie Besant\", \"Indira Gandhi\"], correct: 0 },\n\n  { q: \"The Indian National Flag has how many colours?\", a: [\"Two\", \"Three\", \"Four\", \"Five\"], correct: 1 },\n\n  { q: \"What is the colour of the Ashoka Chakra in the National Flag?\", a: [\"Green\", \"Blue\", \"Red\", \"Black\"], correct: 1 },\n\n  { q: \"Which day is celebrated as Republic Day?\", a: [\"15 August\", \"2 October\", \"26 January\", \"14 November\"], correct: 2 },\n\n  { q: \"Who was the last Viceroy of British India?\", a: [\"Lord Curzon\", \"Lord Mountbatten\", \"Lord Dalhousie\", \"Lord Ripon\"], correct: 1 },\n\n  { q: \"Why do we celebrate Independence Day every year?\", a: [\"To remember our freedom fighters and India's freedom\", \"To celebrate Children's Day\", \"To mark Republic Day\", \"To celebrate New Year\"], correct: 0 }\n]\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-1050","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/online.vibrantonlineacademy.com\/index.php\/wp-json\/wp\/v2\/pages\/1050","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=1050"}],"version-history":[{"count":1,"href":"https:\/\/online.vibrantonlineacademy.com\/index.php\/wp-json\/wp\/v2\/pages\/1050\/revisions"}],"predecessor-version":[{"id":1051,"href":"https:\/\/online.vibrantonlineacademy.com\/index.php\/wp-json\/wp\/v2\/pages\/1050\/revisions\/1051"}],"wp:attachment":[{"href":"https:\/\/online.vibrantonlineacademy.com\/index.php\/wp-json\/wp\/v2\/media?parent=1050"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}