Answer:
A for loop is classified as an iteration statement. A simple example might be...
For x = 1 To 10
'loop body
Next x
The same loop expressed as a while loop (classified as a control flow statement) could be...
x = 0
Do While x < 11
'loop body
x = x + 1
Loop
.