What names are displayed in the list box when the button is clicked on?

```
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim names() As String = IO.File.ReadAllLines("Data.txt")
lstBox.Items.Clear()
For i As Integer = (names.Count - 1) To 0 Step -2
lstBox.Items.Add(names(i))
Next
End Sub
```
Assume the five lines of the file Data.txt contain the following entries: Bach, Borodin,
Brahms, Beethoven, Britain.
(A) Bach, Brahms, and Britain
(B) Britain, Beethoven, Brahms, Borodin, and Bach
(C) Bach, Borodin, Brahms, Beethoven, and Britain
(D) Britain, Brahms, and Bach


(D) Britain, Brahms, and Bach

Computer Science & Information Technology

You might also like to view...

An abstract method is a method that has only the heading with no body.

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

Computer Science & Information Technology

A sequence of six numbers and/or letters used to define a specific color in CSS rules is called a(n) hex value.

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

Computer Science & Information Technology

?Block elements can be centered horizontally within their parent element by setting both the left and right margins to _________.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

There are three causes of cache miss: compulsory, capacity, and conflict. Define the meaning of these terms and briefly explain what can be done to minimize their effect.

What will be an ideal response?

Computer Science & Information Technology