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

The ________ control helps you keep your form looking neat and professional by keeping the other controls aligned properly

Fill in the blank(s) with correct word

Computer Science & Information Technology

One of the useful features of a ________ is the ability to "band" rows and columns

A) built-in cell style B) built-in function C) fill color D) table style

Computer Science & Information Technology

A ____ asks a series of questions and then uses your answers to create a control in a form or report.

A. Form Wizard B. Control Wizard C. Report Wizard D. Control Gallery

Computer Science & Information Technology

Which of the following is a high-speed, medium-range, broadband wireless metropolitan area network?

a.Wi-Fi b.WiMax c.Bluetooth d.ZigBee

Computer Science & Information Technology