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

``` Dim tonightShow() As String = {"Allen", "Parr", "Carson", "Leno",
"O'Brien", "Leno"}
Dim query = From host in tonightShow
Where host.Length = 4
Select host
Distinct
For Each host in query
lstBox.Items.Add(host)
Next

```
(A) Parr, Leno, Leno
(B) Parr, Leno
(C) Leno
(D) No names

(B) Parr, Leno

Computer Science & Information Technology

You might also like to view...

An administrator wants to prevent users from plugging in their personal laptops and accessing the Internet without a member of the IT staff configuring the machine first. Which of the following would MOST likely be installed?

A. Multilayer switch B. CSU C. Proxy server D. IDS

Computer Science & Information Technology

If your computer is connected to a projector, and you start a slide show in Slide Show view, ____________________ view starts on the computer and Slide Show view appears on the projection screen.

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

Computer Science & Information Technology