Iteration statements and switch statements can include continue and break statements. Iteration statements, known as loops, include the for loop, enhanced for loop, while loop, and do-while loop.
B and D are incorrect.
The only conditional statement that can include the break and continue statement is the switch statement. There is no logical reason to continue or break out of an expression statement.
|