Computer Science, asked by rkvgmailcom6964, 1 year ago

Consider the following code snippet
while (a != 0) { if (spam>a == 1) continue; else a++; }
What will be the role of the continue keyword in the above code snippet?
A.The continue keyword restarts the loop
B.The continue keyword skips the next iteration
C.The continue keyword skips the rest of the statements in that iteration
D.None of the mentioned

Answers

Answered by meghakatiyar1
0
option a is right ....because it continue keyword s
restarts the loop
Answered by prittygirlpreeta
0
A is right ans!!☺☺ hope its right
Similar questions