Login
Remember
Register
Ask a Question
Which of the following is used to skip an iteration in a loop in Java?
0
votes
asked
May 4, 2024
in
JAVA
by
rahuljain1
Which of the following is used to skip an iteration in a loop in Java?
a) break
b) continue
c) return
d) skip
iteration-loop
java
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 4, 2024
by
rahuljain1
Answer: b) continue
Explanation: The “continue” keyword is used to skip an iteration in a loop in Java.
...