Describe break and continue statement.
Break: - it is used to terminate the
execution of the nearest enclosing loop in which it appears.
Continue:- like the break statement ,
the continue statement can only appear in the body of a loop. When the compiler
encounters a continue statement then the rest of the body of the statements in
the loop are skipped and the control is transferred to the loop-continuation
portion of the nearest loop enclosing.