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

```
Dim deadlySins() As String = {"pride", 'greed', "anger", "envy",
"lust", "gluttony", "sloth"}

Dim query = From sin in deadlySins
Order By sin.Length Descending
Select sin.ToUpper
lstBox.Items.Add(query.First)
lstBox.Items.Add(query.Min)
```
(A) GLUTTONY and GLUTTONY
(B) GLUTTONY and SLOTH
(C) GLUTTONY and ANGER
(D) PRIDE and ENVY

(C) GLUTTONY and ANGER

Computer Science & Information Technology

You might also like to view...

Which of the following assists with airflow in a server? (Select TWO).

A. Riser cards B. Water cooling C. Shroud D. Baffle E. Heat sinks

Computer Science & Information Technology

The Laplace measure.

Consider a training set that contains 100 positive examples and 400 negative examples. For each of the following candidate rules, R1: A ?? + (covers 4 positive and 1 negative examples), R2: B ?? + (covers 30 positive and 10 negative examples), R3: C ?? + (covers 100 positive and 90 negative examples), determine which is the best and worst candidate rule according to:

Computer Science & Information Technology