What will be the output of a loop if the continue statement is placed before the print statement inside the loop? 

  • The loop will not output anything 
  • The loop will output values continuously 
  • The loop will only output the first value 
  • The loop will output alternate values
If the continue statement is placed before the print statement inside a loop, it will cause the loop to skip the print statement during every iteration. Therefore, nothing will be outputted by the loop.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *