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...

Which of the following devices would allow a technician using a packet sniffer to view all the data on a network?

A. GBIC B. Hub C. Bridge D. Modem

Computer Science & Information Technology

What is the Android SDK helper class for defining a SQLite database table through Java?

a. SQLiteDatabase b. SQLiteOpenHelper c. SQLiteHelper d. SQLiteDBHelper

Computer Science & Information Technology