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...

How does port redirection work?

What will be an ideal response?

Computer Science & Information Technology

When you are creating linked text boxes, an upright pitcher indicates that:

a. two or more text boxes are linked b. the first text box is ready to be linked to another text box c. the text box is too small to add additional text

Computer Science & Information Technology

The System and Security category in Control Panel includes the ________ applet, which enables you to configure and work with the various options that are offered for updating system software

Fill in the blank(s) with correct word

Computer Science & Information Technology

Assume a 5?stage pipeline (instruction fetch, operand fetch, execute, memory, write?back). For the following code show any stalls and indicate where operand forwarding would be needed.

ADD R9,R9,R8
MUL R1,R2,R3
LDA R5,(4,R1)
SUB R5,R5,R1
ADD R7,R8,R9
MUL R7,R1,R5

Computer Science & Information Technology