What names are displayed in the list box by the following lines of code?
``` Dim oceans() As String = {"Atlantic", Pacific", "Indian", "Arctic"
"Antartic"}
Dim query = From ocean in oceans
Where ocean.Length = 6
Select ocean
For Each ocean As String In query
lstBox.Items.Add(ocean)
Next
```
(A) Pacific and Indian
(B) Indian and Arctic
(C) Indian
(D) Atlantic and Pacific
(B) Indian and Arctic
You might also like to view...
The table ____________________ element is used to format the first row in the table.
Fill in the blank(s) with the appropriate word(s).
____ is the process of copying an item from the Office Clipboard into the document at the location of the insertion point.
A. Clipping B. Dragging C. Pasting D. Dropping
Which of these expressions:
1. (int)19.00001 2. (int)18.99999 3. (int)19E2 evaluates to 19?
A(n) ____________________ is a search for a way in which a current problem is similar to other problems that have been previously solved.
Fill in the blank(s) with the appropriate word(s).