Computer Applications

Which of the following keywords can be used to terminate a switch case as well as a loop construct?

  1. continue
  2. void
  3. break
  4. stop

Java Nested for Loops

10 Likes

Answer

break

Reason — break can be used to terminate a switch case as well as a loop construct.

Answered By

6 Likes


Related Questions