0 votes
in JAVA by
Which of the following is used to exit a loop in Java?

a) break

b) continue

c) return

d) exit

1 Answer

0 votes
by

Answer: a) break

Explanation: The “break” keyword is used to exit a loop in Java.

...