Examlex

Solved

What Colleges Are Displayed in the List Box by the Following

question 9

Multiple Choice

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)


Definitions:

Related Questions