राजस्थान चतुर्थ श्रेणी भर्ती 2025 (MCQs) – महत्वपूर्ण प्रश्न-उत्तर
Published On: July 31, 2025 8:14 pm
---Advertisement---
राजस्थान चतुर्थ श्रेणी भर्ती 2025 (MCQs) – महत्वपूर्ण प्रश्न-उत्तर
राजस्थान चतुर्थ श्रेणी भर्ती 2025: महत्वपूर्ण प्रश्न और उत्तर
राजस्थान चतुर्थ श्रेणी भर्ती
महत्वपूर्ण वस्तुनिष्ठ प्रश्न (MCQs)
${q.question}
${q.options.map(option => `
${option}
`).join('')}
`;
container.innerHTML += questionCard;
});
}
// Function to toggle answer visibility
function toggleAnswer(index) {
const answerDiv = document.getElementById(`answer-${index}`);
const button = document.querySelector(`#question-container > div:nth-child(${index + 1}) .toggle-btn`);
const isHidden = answerDiv.classList.contains('hidden');
if (isHidden) {
answerDiv.classList.remove('hidden');
button.textContent = 'उत्तर छिपाएं';
button.classList.remove('bg-indigo-500', 'hover:bg-indigo-600');
button.classList.add('bg-red-500', 'hover:bg-red-600');
} else {
answerDiv.classList.add('hidden');
button.textContent = 'उत्तर देखें';
button.classList.remove('bg-red-500', 'hover:bg-red-600');
button.classList.add('bg-indigo-500', 'hover:bg-indigo-600');
}
}
// Initial call to display the questions when the page loads
window.onload = displayQuestions;