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

```
Dim ivies() As String = {"Harvard", "Princeton", "Yale", "Dartmouth',
"Brown", "Columbia', "Univ. of PA", 'Cornell"}

Dim query = From college in ivies
Order By college Descending
Select college
lstBox.Items.Add(query.First)
lstBox.Items.Add(query.Min)
```
(A) Yale and Brown
(B) Yale and Yale
(C) Brown and Brown
(D) Harvard and Brown

(A) Yale and Brown

Computer Science & Information Technology

You might also like to view...

A rectangular object that contains a title bar, address bar, menu bar, command bar, and status bar is a window

Indicate whether the statement is true or false

Computer Science & Information Technology

After a function has been declared as virtual, the return type and parameter list of all subsequent derived class override versions must change.

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

Computer Science & Information Technology