Multiple Choice
According to the following code when the loop terminates what value is in num? Dim startNum, stopNum, stepNum, num As Integer startNum = 1 stopNum = 8 stepNum = 2 For num = startNum To stopNum Step stepNum . . Next num
A) 5
B) 7
C) 8
D) 9
Correct Answer:

Verified
Correct Answer:
Verified
Q2: The repetition programming structure is used to
Q5: The loop created by the For...Next statement
Q40: In a For...Next loop structure, which of
Q41: The startvalue in a For...Next loop structure
Q42: The For...Next loop is represented in a
Q44: Updating is also called incrementing.
Q46: In the Do...Loop statement, the keyword While
Q47: The condition used in the Do...Loop statement
Q48: An accumulator is a numeric variable used
Q50: Every program contains the sequence programming structure.