Continue
The CONTINUE statement stops the current iteration of the loop and starts the new one. The following illustrates the syntax of the CONTINUE statement: 1234567 WHILE Boolean_expressionBEGIN — code to be executed IF condition CONTINUE; — code will be skipped if the condition…