What numbers will be displayed in the list box when the button is clicked?

```
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim num as Double = 10
Do While num > 1
lstBox.Items.Add(num)
num = num - 3
Loop
End Sub
```
(A) 10, 7, and 4
(B) 10, 7, 4, and 1
(C) 10, 7, 4, 1, and -2
(D) No output


(A) 10, 7, and 4

Computer Science & Information Technology

You might also like to view...

With the Transparency slider, you can press the INCREMENT ARROWS beside the slider in the Format Background dialog to move the slider in 10-percent increments.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

(Multiples of 2 with an Infinite Loop) Write a program that prints the powers of the integer 2, namely 2, 4, 8, 16, 32, 64, etc. Your while loop should not terminate (i.e., you should create an infinite loop). To do this, simply use the keyword true as the expression for the while statement. What happens when you run this program?

What will be an ideal response?

Computer Science & Information Technology

What is the CDMA equivalent of a SIM card?

What will be an ideal response?

Computer Science & Information Technology

When text is inserted into a shape and both the text and shape have been formatted, selecting the shape and clicking the Clear All Formatting button will ________

A) clear NOT clear the formatting from the text or shape B) clear the formatting from ONLY the shape C) clear the formatting from ONLY the text D) clear the formatting from BOTH the text and shape

Computer Science & Information Technology