InterviewSolution
Saved Bookmarks
| 1. |
What Is Continue ? |
|
Answer» A Java keyword used to resume program execution at the END of the current LOOP. If followed by a LABEL, CONTINUE RESUMES execution where the label occurs. A Java keyword used to resume program execution at the end of the current loop. If followed by a label, continue resumes execution where the label occurs. |
|