function Assessment({ onNavigate }) { const [selected, setSelected] = React.useState(null); const [showResult, setShowResult] = React.useState(false); const options = [ { id: 'a', text: 'The stator windings produce a rotating magnetic field which induces EMF in the rotor bars.', hi: 'स्टेटर वाइंडिंग एक घूर्णन चुंबकीय क्षेत्र उत्पन्न करती है।' }, { id: 'b', text: 'A DC supply is provided to the rotor via slip rings and brushes.', hi: 'रोटर को स्लिप रिंग के माध्यम से DC सप्लाई दी जाती है।' }, { id: 'c', text: 'The rotor bars are permanently magnetised during manufacturing.', hi: 'रोटर बार्स को निर्माण के दौरान स्थायी रूप से चुम्बकित किया जाता है।' }, { id: 'd', text: 'Both stator and rotor are supplied by separate three-phase AC sources.', hi: 'स्टेटर और रोटर दोनों को अलग AC स्रोतों से आपूर्ति की जाती है।' }, ]; return (
{/* Exam header bar */}
MOCK TEST
Fitter · Semester 3 · Trade Test Preview
Q PROGRESS
12 / 40
TIME LEFT
42:18
{/* Question */}
QUESTION 13 / 40 3D BASED 2 MARKS EASY

Study the 3D cutaway of the induction motor below. Which statement correctly explains how torque is developed in the rotor?

नीचे दिए गए इंडक्शन मोटर के 3D कटअवे को देखें। कौन-सा कथन रोटर में टॉर्क विकसित होने की सही व्याख्या करता है?

{/* 3D reference */}
REFERENCE · 3D CUTAWAY
{/* Options */}
{options.map(o => { const isSel = selected === o.id; const correct = showResult && o.id === 'a'; const wrong = showResult && isSel && o.id !== 'a'; return ( ); })}
{/* Action bar */}
{!showResult ? ( ) : ( )}
{showResult && (
Explanation

Correct — the three-phase stator windings, when energised, produce a magnetic field rotating at synchronous speed (Ns = 120f/P). This field induces EMF in the rotor bars, driving currents through them, which then interact with the rotating field to produce torque. This is why the machine is called an "induction" motor.

)}
{/* Question palette */}
Question palette
{Array.from({ length: 40 }).map((_, i) => { const n = i + 1; const state = n < 13 ? 'done' : n === 13 ? 'current' : n === 8 || n === 11 ? 'review' : 'todo'; return (
{n}
); })}
{[ { c: 'var(--green-600)', l: 'Answered' }, { c: 'var(--saffron-500)', l: 'Current' }, { c: 'var(--navy-100)', l: 'Marked for review' }, { c: 'var(--ink-100)', l: 'Not visited' }, ].map(x => (
{x.l}
))}
); } window.Assessment = Assessment;