Computer Science, asked by TGVtheGreat, 7 hours ago

What abandons the current iteration of the loop?
a) continue
b) stop
c) infinite
d) break

Answers

Answered by pritam7877
1

Answer:

d Break

The break statement causes you to exit the loop immediately. The continue statement abandons the current iteration and goes back to the top of the loop ready for the next iteration. The break and continue statements can make it difficult to understand the logical flow through a loop.

Explanation:

please make me brainlist

Answered by BiscuitBobby
8

Answer:

a)continue

Explanation:

The continue statement abandons the current iteration of the loop and goes back to the beginning of the loop.

Not to be confused with the break statement which skips the loop all together.

Similar questions