93.7k views
3 votes
A "for" loop will repeatedly run a specified block of code so long as a specified condition evaluates to True. State True or False

User Zavala
by
7.7k points

1 Answer

2 votes

Answer: If the test expression is evaluated to false, the for loop is terminated. However, if the test expression is evaluated to true, statements inside the body of the for loop are executed, and the update expression is updated. Again the test expression is evaluated. This process goes on until the test expression is false.

Step-by-step explanation:

User Bilkis
by
7.7k points

No related questions found