KnowledgeBoat Logo

Computer Applications

Name two jump statements and their use.

Java Conditional Stmts

ICSE 2010

92 Likes

Answer

break statement, it is used to jump out of a switch statement or a loop. continue statement, it is used to skip the current iteration of the loop and start the next iteration.

Answered By

44 Likes


Related Questions