Multiple Choice
Which statement is True in regard to the following code?
intCount = 0
Do While intCount < 10
LstOutput.Items.Add("Good Job")
Loop
A) This is an infinite loop.
B) intCount should start at -1.
C) The Items.Insert method should be used instead of Items.Add.
D) The text Good Job should not have quotation marks around it.
Correct Answer:

Verified
Correct Answer:
Verified
Q1: To get the number of items stored
Q2: Suppose you would like your code to
Q3: Which of the following statements will assign
Q4: Which of the following statements correctly displays
Q6: The entries in a ListBox are stored
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)