Explain about jump statements in java.
please don't copy/spam !!
Answers
Answered by
7
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
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:
- break (simple and labeled)
- continue
- return
Similar questions