UPSC G.K. questions

UPSC GK Quiz (India Only) Loading… Score: 0 Restart Quiz function shuffle(a){ for(let i=a.length-1;i>0;i–){ const j=Math.floor(Math.random()*(i+1)); [a[i],a[j]]=[a[j],a[i]]; } return a; } let shuffledQuestions = shuffle(QUESTIONS.slice()); // shuffle questions once let qIndex = 0, score = 0; const qArea = document.getElementById(“qArea”); const optBox = document.getElementById(“options”); const scoreBox = document.getElementById(“score”); function showQ(){ if(qIndex >= shuffledQuestions.length){ qArea.innerHTML = … Continue reading UPSC G.K. questions