MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following code snippetwhile (a != 0){if (spam>a == 1)continue;else++;}What will be the role of the continue keyword in the above code snippet? |
| A. | he continue keyword restarts the loop |
| B. | he continue keyword skips the next iteration |
| C. | he continue keyword skips the rest of the statements in that iteration |
| D. | one of the mentioned |
| Answer» D. one of the mentioned | |