Question:

The break statement can be used to terminate a case in __________ statement.

Show Hint

Remember:
- \textbf{break} is mainly used
- to terminate a case in a \textbf{switch statement}.
Updated On: Feb 9, 2026
Hide Solution
collegedunia
Verified By Collegedunia

Solution and Explanation

Step 1: In programming, the switch statement is used to execute one case among many based on a given value.
Step 2: Each case in a switch statement ends with a break statement.
Step 3: The break statement stops execution and prevents the control from moving to the next case.
Was this answer helpful?
0
0