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
You might also like to view...
Windows Live Call enables you to communicate with another computer without the use of a landline
Indicate whether the statement is true or false
Microwaves have more carrying capacity than radio waves.
Answer the following statement true (T) or false (F)
In the adjacency matrix, we use a linked list to store the vertices and a two-dimensional linked list to store the arcs.
Answer the following statement true (T) or false (F)
Which of the following are common MobileApp design mistakes?A) inconsistencyB) interoperabilityC) lean designD) over designing
What will be an ideal response?