In the following statement that begins a For Next loop, what is the purpose of the Step clause?
For intX = 1 to 100 Step 5
A) It causes intX to be initialized to 5 when the loop begins.
B) It causes the loop to end when intX is equal to 5.
C) It causes intX to be incremented by 5 each time the loop repeats.
D) It causes intX to be decremented by 5 each time the loop repeats.
Correct Answer(s): C