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

``` Dim numbers() As Integer = {4, 7, 9, 3, 1, 7, 7}
Dim query = From number in numbers
Where number > 6
Select number
Distinct

lstBox.Items.Add(query.Count)
lstBox.Items.Add(query.Average)

```
(A) 5 and 12
(B) 2 and 12
(C) 2 and 8
(D) 5 and

(C) 2 and 8

Computer Science & Information Technology

You might also like to view...

By default, OpenOffice Calc spreadsheets contain four sheets

Indicate whether the statement is true or false

Computer Science & Information Technology

?A final way to alter an object is through a Cascading Style Sheets (CSS) _____.

A. ?filter B. ?box model C. ?border property D. ?visual design style

Computer Science & Information Technology