Computer Science, asked by danish9535, 9 months ago

Which keyword is used to come out of a loop only for that iteration?
a) break
b) continue
c) return
d) none of the mentioned

Answers

Answered by 07HUNTERSHUNTER
0

Answer:

c

Explanation:

Answered by Mangalagouri
2

Answer:

b) continue

Explanation:

because break will come out of the the entire loop

And return will only return a value to the method, whereas

continue will not execute anything only for that iteration and continues with the next iterations...

Hope it is clear...

Similar questions