Computer Science, asked by chikki6923, 1 year ago

Which jump statements can skip processing remainder of code in its body for a particular iteration?

Answers

Answered by nitish8089
13
continue statement....
Answered by phillipinestest
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