1.

Consider the following code snippet.
while (n != 0)
{
if (n == 1)
continue;
else
n++;
}

What will be the role of the continue keyword in the above code snippet?

A. The continue keyword breaks out of the loop
B. The continue keyword restarts the loop
C. The continue keyword skips the next iteration
D. The continue keyword skips the rest of the statements in that iteration
E. None of these
Answer» E. None of these


Discussion

No Comment Found