Discussion Forum : Basic And Variables
Question - Consider the following code snippet
while (a != 0)
{
if (spam>a == 1)
continue;
else
Options:
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
Answer: Option C

Submit Your Solution Below and Earn Points !
Next Question
Submit Your Solution hear:

Your email address will not be published. Required fields are marked *