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
Order By state Ascending
Select state
lstBox.Items.Add(query.First)
lstBox.Items.Add(query.Min)
```
(A) Arizona and Colorado
(B) Arizona and Utah
(C) Colorado and Arizona
(D) Arizona and Arizona
(D) Arizona and Arizona
Computer Science & Information Technology
You might also like to view...
The Labels icon is used to add ________ about the data in the fields
Fill in the blank(s) with correct word
Computer Science & Information Technology
Read the nouns, verbs, and phrases for the SentenceGenerator class from files. Use an ArrayList instead of an array for each of these.
What will be an ideal response?
Computer Science & Information Technology