Question Detail
Question
According to the 'When to use Break?' slide, which scenario is NOT typically associated with the primary use of a
break statement?
Correct Answer
Option C is the correct answer.
Detailed Explanation
The slide distinguishes between 'Normal Condition' (where the end is known, like running exactly 100 times) and 'Break Statement' usage (for unpredictable exits). A loop running a fixed number of times can typically be controlled by the loop condition itself, rather than needing an internal
break.
Hint
The slide differentiates between predictable and unpredictable exit conditions.