Multiple Choice
How many times will the message I love Visual Basic be displayed?
Dim intCount As Integer = 0
Do
LstOutPut.Items.Add("I love Visual Basic")
IntCount += 1
Loop While intCount > 10
A) It will display 10 times.
B) It will display once.
C) It will display 2 times.
D) It will not be displayed at all.
Correct Answer:

Verified
Correct Answer:
Verified
Q21: If <b>lstMonths</b> is a <b>ListBox</b>, which of
Q22: The first item in a ListBox has
Q23: A difference between a <b>ListBox</b> and a
Q24: The _method can be used to place
Q25: The <b>InputBox</b> function always returns a _value.<br>A)
Q27: What will be the final value of
Q28: How can you cause scroll bars to
Q29: Which of the following code fragments calculates
Q30: Which property determines the amount of time,
Q31: Which statement about the <b>ListBox.Items.Add</b> method is