Jumping statements are those which interrupt the execution of the normal flow. There are two types of Jumping Statements.
break statement: When a break statement is encountered inside the loop in the program the control will come out from the loop and continue with the statement followed by the loop.
continue statement: When continue statement is encountered inside the loop. It will skip the statement after that and control goes back to the conditions stated.