Jump

Jump Statements Jump statements are control statements that transfer execution control from one point to another point in the program,allowing for changes in the flow of execution. There are three Jump statements that are provided in the Java programming language: 1) Break Statement2) Continue Statement3) Return Statement 1) Break Statement :A break statement in Java […]

Jump Read More »