šŸ”” TIME EXPIRED — STOP WRITING — STATION ENDED
paeds.online Ā· TOACS MOCK EXAMINATION

FCPS Paediatrics

TOACS Mock Examination Ā· Observed Station

1 Station
8 Minutes

šŸ“‹ Station Type: OBSERVED Ā· INTERACTIVE Ā· BEHAVIORAL HEALTH

āš™ļø Instructions: Read the clinical scenario. Write your answers, then reveal model answers to check your responses.

🚨 Key clue: Defiance + arguing + blaming others + NO aggression = ODD, not CD

šŸ“š paeds.online
startExam() { document.getElementById('intro-screen').style.display = 'none'; document.getElementById('exam-screen').style.display = 'block'; answers = {}; revealed = {}; timeLeft = 480; examActive = true; updateTimerUI(); startTimer(); renderExam(); } function restartExam() { answers = {}; revealed = {}; timeLeft = 480; if(timerInterval) clearInterval(timerInterval); examActive = true; document.getElementById('summary-screen').style.display = 'none'; document.getElementById('exam-screen').style.display = 'block'; updateTimerUI(); startTimer(); renderExam(); } function reviewAnswers() { restartExam(); } document.getElementById('startBtn').addEventListener('click', startExam); document.getElementById('restartBtn').addEventListener('click', restartExam); document.getElementById('reviewBtn').addEventListener('click', reviewAnswers); function escapeHtml(str) { if(!str) return ''; return str.replace(/[&<>]/g, function(m) { if(m === '&') return '&'; if(m === '<') return '<'; if(m === '>') return '>'; return m; }); }