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.
a. This is an infinite loop.
Computer Science & Information Technology
You might also like to view...
When a user logs on to a Windows 8.1 computer, the operating system generates a ________
a. Ticket b. User ticket c. Password d. User profile
Computer Science & Information Technology
________ enables the ArrayList object to increase its size to accommodate new elements and to decrease its size when elements are removed.
a) Element adjustment b) The Collection object c) Dynamic resizing d) Automatic sizing e) Both a and b.
Computer Science & Information Technology