Multiple Choice
What is the difference in the execution of the Do Until Loop (first example) and the Do Loop Until (second example) ? '
First Example:
SngPayAmount = 200
Do Until sngPayAmount > 150
SngPayAmount = sngPayAmount - 50
Loop
'Second Example:
SngPayAmount = 200
Do
SngPayAmount = sngPayAmount - 50
Loop Until sngPayAmount > 150
A) Both loops are executed in an identical manner.
B) The first loop will never be executed while the second loop will execute once.
C) The first loop will execute one more time than the second loop.
D) The first loop will never be executed while the second is an infinite loop.
Correct Answer:

Verified
Correct Answer:
Verified
Q7: Setting this property to True will put
Q8: Which type of loop uses a pretest
Q9: Which code example will calculate the number
Q10: This method erases all the items in
Q11: A _is a loop inside another loop.<br>A)
Q13: All of the following are valid <b>ComboBox</b>
Q14: What is wrong with the following code?
Q15: Which of the following sections of code
Q16: The <b>SelectedItem</b> property of a ListBox _.<br>A)
Q17: Which standard Visual Basic function returns the