Inclusive Education A0 – CBT (Set 2) Inclusive & Special Needs Education (A0) CBT 60:00 Previous Next Submit // Shuffle function function shuffle(arr){ for(let i=arr.length-1;i>0;i--){ let j=Math.floor(Math.random()*(i+1)); [arr[i],arr[j]]=[arr[j],arr[i]]; } return arr; } // Shuffle questions & options questions.forEach(q=>{ let opts=q.o.map((o,i)=>({o,i})); shuffle(opts); q.o=opts.map(x=>x.o); q.a=opts.findIndex(x=>x.i===q.a); }); shuffle(questions); let current=0; let score=0; function loadQ(){ let q=questions[current]; let html=`…
Read more: Inclusive & Special Needs Education (A0) CBT Quiz No 2.