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 ContainsE(state)
Select state
For Each state in query
lstBox.Items.Add(state)
Next
Function ContainsE(word As String) As Boolean
If word.IndexOf("E") <> -1 Or word.IndexOf("e") <> -1 Then
Return True
Else
Return False
End If
End Function
```
(A) Colorado
(B) New Mexico
(C) Colorado, New Mexico, Arizona, Utah
(D) No states
(B) New Mexico
You might also like to view...
The default line spacing in Word is ________
A) 1.5 B) 1.0 C) 1.08 D) 2.0
During the deployment of a SAN, you are instructed to implement zoning and LUN masking. What benefit will the organization derive from this?
A. increased availability B. access control C. increased performance D. decreased space taken on the SAN