Computer Science, asked by Anonymous, 1 month ago

Explain about jump statements in java.
please don't copy/spam !!

Answers

Answered by SAGARTHELEGEND
7

 \huge \sf{\green{\fbox{\red{\fbox{\green{\fbox{\red{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)

#SAGARTHELEGEND

Answered by Anonymous
17

Answer:

In Java jump statements are mainly used to transfer control to another part of our program depending on the conditions. These statements are very useful from the programmer's view because these statements allow alteration of the flow of execution of the program. 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:

  1. break (simple and labeled)
  2. continue
  3. return
Similar questions