When was the Constitution of India adopted by the Constituent Assembly?
When did the Constitution of India come into force?
The Constitution of India is considered the:
Which of the following is not a function of the Indian Constitution?
The Constitution separates powers among which three branches?
Which of the following rights is not a Fundamental Right under the Indian Constitution?
The Constitution promotes social justice by:
The Constitution serves as a symbol of:
Who drafted the Constitution of India?
The Objectives Resolution was later incorporated into which part of the Constitution?
const answers = [2, 3, 2, 0, 1, 0, 2, 1, 2, 2];
let currentQuestion = 0;
function checkAnswer(selected, el) {
const feedback = document.getElementById(`feedback${currentQuestion + 1}`);
const correctAnswer = answers[currentQuestion];
if (selected === correctAnswer) {
el.style.backgroundColor = ‘green’;
feedback.innerHTML = ‘✅ Correct Answer!’;
} else {
el.style.backgroundColor = ‘red