187k views
5 votes
The break statement is required in the default case of a switch selection to the exit structure properly. True/False

User Teuneboon
by
5.9k points

1 Answer

5 votes

Answer: True

Explanation: Break statements are the statements is for the termination of the loop .It is considered as the statements that control the loop. For the default case ,default method is used in the switch selection statements.

The Switch selection statement,due to the working of the break statement will exit or terminate. Thus, the statement given in the question is correct.

User Trupanka
by
6.0k points