Which jump statements can skip processing remainder of code in its body for a particular iteration?
Answers
Answered by
13
continue statement....
Answered by
8
Continue jump statements is used to skip remainder process of code in the body of its particular iteration.
Explanation:
Continue is the keyword used in any loop control structures and it is purposely used for the function to jump to next iteration of loop immediately. It works perfectly with continue flow of program and at specified condition it skips remaining code.
For, while and do-while loop make used of java continue statement. If it is specified for only inner loop , it executes only inner loop.
Similar questions
Math,
8 months ago
Math,
8 months ago
Computer Science,
1 year ago
Environmental Sciences,
1 year ago