The second statement of a "for" loop is the ________, which is checked before every iteration.

  • initialization
  • condition
  • increment
  • termination
In a "for" loop, the second part is the condition. This condition is checked before every iteration to determine if the loop should continue executing. If the condition evaluates to false, the loop terminates. The initialization is the first part, and the increment is the third part of the "for" loop.
Add your answer
Loading...

Leave a comment

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