Computer Science, asked by maari1975muthu, 3 months ago

explain jump statements in java​

Answers

Answered by Anonymous
3

Answer:

The jumping statements are the control statements which transfer the program execution control to a specific statements. Java has three types of jumping statements they are break, continue, and return. These statements transfer execution control to another part of the program.

Explanation:

mark mesarbainilset

Answered by Anonymous
0

Answer:

In Java jump statements are mainly used to transfer control to another part of our program depending on the conditions. ... These statements can be used to jump directly to other statements, skip a specific statement and so on. In Java we have the following three jump statements: break (simple and labeled) continue.

Similar questions