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

``` Dim numbers() As Integer = {4, 7, 9, 3, 1}
Dim query = From number in numbers
Where number > 6
Select number
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 8

(C) 2 and 8

Computer Science & Information Technology

You might also like to view...

Overriding an employee's security clearance requires that the employee meet the _________________________ standard.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

______ consists of ROM chips or flash memory chips that store permanent instructions.

A. Firmware B. Chipware C. Dataware D. Memware

Computer Science & Information Technology