Home »
MCQs »
PHP MCQs
The 'break' statement is used in switch and loop statements, can the 'continue' statement be used in the switch statement instead of the 'break' statement?
99. The "break" statement is used in switch and loop statements, can the "continue" statement be used in the switch statement instead of the "break" statement?
- Yes
- No
Answer: B) No
Explanation:
No, we cannot use the continue statement instead of the break statement in the switch statement.