Home »
MCQs »
Java MCQs
The break statement in Java is used to ___
21. The break statement in Java is used to ___.
- Terminates from the loop immediately
- Terminates from the program immediately
- Skips the current iteration
- All of these
Answer: A) Terminates from the loop immediately
Explanation:
The break statement in Java is used to terminate from the loop immediately.