What will be displayed in the list box when the following code runs?

```
Select Case num
Case 6, 7, 11
lstBox.Items.Add("W")
Case Is < 7
lstBox.Items.Add("X')
Case Is > 5
lstBox.Items.Add("Y")
Case Else
lstBox.Items.Add("Z")
End Select
```
(A) Z can never be displayed.
(B) W, X and Y will be displayed if the value of num is 6.
(C) W and Y will be displayed if the value of num is 7.
(D) Z will always be displayed.

(A) Z can never be displayed.

Computer Science & Information Technology

You might also like to view...

This query is typically used by business managers to evaluate data in the tables of an existing database system that is maintained by their firm's IT departments:

A) Select or Crosstab query. B) Update query. C) Make Table query. D) Append query.

Computer Science & Information Technology

To create a multiple items form, you click Multiple Items button in the:

A) Forms group on the Create tab. B) Tools group on the Create tab. C) Tools group on the Format tab. D) Forms group on the Format tab.

Computer Science & Information Technology