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.
b. It will display once.
Computer Science & Information Technology
You might also like to view...
C# has only one operator, ________ , for integer division and floating point division.
a) asterisk ( * ) b) backslash ( \ ) c) forward slash ( / ) d) None of the above.
Computer Science & Information Technology
In a video file, each ____________________ represents a single image.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology