If the computer you are using is a laptop that moves from one network to another, you can click the Alternate Configuration tab and configure a static IP address setting for a second network.
The Continue statement is used inside the looping statements.
When a Continue statement is encountered inside the loop, it stops executing the current iteration ( it skips the next steps in the current iteration) and goes to the next iteration.
It then continues to execute the loop for the next iteration.
The continue statement can be used in all the looping structures ( for loop, while loop, do while loop ).