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

``` Dim states() As String = {"Colorado, "New Mexico", "Arizona", "Utah"}
Dim query = From state in states
Where state.length < 5
Select state.ToUpper
For Each state in query
lstBox.Items.Add(state)
Next

```
(A) Utah
(B) COLORADO, NEW MEXICO, ARIZONA, UTAH
(C) UTAH
(D) No states


(C) UTAH

Computer Science & Information Technology

You might also like to view...

A(n) ____________________ is a short series of programming instructions.

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

Computer Science & Information Technology

To add a calculated control to sum a column, you select the text box and click the Totals button in the:

A) Grouping & Totals group on the Create tab. B) Tools group on the Create tab. C) Tools group on the Design tab. D) Grouping & Totals group on the Design tab.

Computer Science & Information Technology

Which of the following is NOT a task typically performed by an OS's file system?

A. provide a convenient user interface B. store file metadata C. convert files between image formats D. organize space on a storage device

Computer Science & Information Technology

Windows XP was the last Windows operating system built on the Windows 95 kernel.

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

Computer Science & Information Technology