Chapter 3.4 : The for statement Flashcards
1
Q
What makes up the first line of the for loop?
A
The initialization, continuation condition, and the update of the value
2
Q
What must the continuation condition be in a for loop?
A
a boolean expression
3
Q
What is the initialization usually?
A
a declaration or an assignment statement
4
Q
What is the update expression usually?
A
an increment or a decrement