Which description correctly combines the normal phase order of a for statement with the effect of an executed break?
Initializer once, then condition, body, and update; break exits before later updates✓Correct answer
Condition once, then initializer, update, and body; break runs the update
Initializer before every condition check; break restarts initialization
Body before initialization; break then performs one final update
Explanation
The initializer runs once, then each normal cycle checks the condition, executes the body, and performs the update. An executed break exits the loop immediately, so later iterations and the update for that interrupted cycle do not run.