Computer Science, asked by ravindarreddy3363, 2 months ago

n
A
statement will skip executing a loop further and exit from that loop. .
Select one:
O exit
f1
O break
O continue
O switch​

Answers

Answered by raninayak490
0

Answer:

continue

Explanation:

The continue statement skips the current iteration of a loop ( for , while , do... while , etc). After the continue statement, the program moves to the end of the loop.

Similar questions