What names are displayed in the list box by the following program segment?

```
Dim newYork As String = "Manhatten,Bronx,Brooklyn,Queens,Staten Island"
Dim boroughs() As String = newYork.Split(","c)
lstBox.Items.Add(boroughs(0))
lstBox.Items.Add(boroughs.Min)
```
(A) Brooklyn and Queens
(B) Manhatten and Staten Island
(C) Bronx and Manhatten
(D) Manhatten and Bronx

(D) Manhatten and Bronx

Computer Science & Information Technology

You might also like to view...

Starting a computer when it is powered off is called a warm boot

Indicate whether the statement is true or false

Computer Science & Information Technology

In ________ mode, new text that is added replaces what was previously there

A) overtype B) justified C) insert D) indented

Computer Science & Information Technology