Concept Flow - Break vs continue execution difference
Start Loop
Check Condition
Yes
Check if break condition
Break Loop
Skip rest of loop
Next Iteration
End Loop
The loop checks conditions each iteration. 'break' stops the loop immediately. 'continue' skips the rest of the current iteration and moves to the next.