KnowledgeBoat Logo

Computer Applications

Explain the significance of break statement in the switch statement.

Java Conditional Stmts

72 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

43 Likes


Related Questions