KnowledgeBoat Logo
|

Computer Applications

Explain the significance of break statement in the switch statement.

Java Conditional Stmts

79 Likes

Answer

The break statement is used inside the switch statement to terminate a statement block. It brings the program control out of the switch statement.

Answered By

45 Likes


Related Questions