Which statement is the opposite of the break statement and is also known as the bypass statement?

Which statement is the opposite of the break statement and is also known as the bypass statement?

وقفے کے بیان کے برعکس کون سا بیان ہے اور اسے بائی پاس بیان کے نام سے بھی جانا جاتا ہے؟
Explanation

The continue statement is the opposite of the break statement; it skips the current iteration and moves to the next one in a loop.

It's also called the bypass statement because it bypasses part of the loop code.