Break statement cannot be used in a
-
For loop
-
While loop
-
if loop
-
All the above
C
Correct answer
Explanation
The break statement is used to exit from loops (for, while, do-while) and switch statements. It cannot be used with if statements because if is a conditional statement, not a loop. 'if loop' is incorrect terminology but the meaning is clear.