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
Where college.Length <= 9
Order By college.Length Descending, college Ascending
Select college
lstBox.Items.Add(query.First)
lstBox.Items.Add(query.Max)
```
(A) Dartmouth and Princeton
(B) Yale and Brown
(C) Yale and Cornell
(D) Dartmouth and Yale
(D) Dartmouth and Yale
Computer Science & Information Technology
You might also like to view...
Which of the following does the Internet NOT offer?
A) FTP B) e-mail C) FOP D) World Wide Web
Computer Science & Information Technology
Which of the following is an attack that causes unsolicited prerecorded phone messages to be sent?
A. SPIT B. STP C. SSMTP D. SRTP
Computer Science & Information Technology