The Layout managers can be turned off.
B
Correct answer
Explanation
In Swing/AWT, layout managers control component positioning. You can set layout manager to null to use absolute positioning (setBounds()). However, this isn't 'turning off' layout managers - null IS a valid layout manager setting that requires manual positioning. The statement is technically true but misleading - you replace with null layout, not disable entirely.