Multiple Choice
Which of the following will count down from 10 to 1 correctly,with no added or omitted numbers?
A) For i = 10 to 0 Step -1
B) For i = 10 To 1 Step 1
C) For i As Integer = 10 To 1 Step -1
D) For i As Integer = 1 To 10 Step -1
Correct Answer:

Verified
Correct Answer:
Verified
Q1: The Exit For statement causes immediate exit
Q2: Infinite loops occur when the loop-continuation condition
Q3: The Do…Loop While repetition statement tests the
Q4: The optional _ keyword specifies the increment
Q6: Counting loops should be controlled with values.<br>A)Double<br>B)Integer<br>C)Char<br>D)None
Q7: The Exit statement terminates a program.
Q8: If a CheckBox is "on" (checked),its _
Q9: Which of the following statements about the
Q10: In a Do…Loop While statement,the loop-continuation condition
Q11: A control variable that is declared in