What two numbers are displayed in the list box when the button is clicked on?
```
Dim nums(2) as Integer
Private Sub frmNumbers_Load(...) Handles MyBase.Load
nums(0) = 5
nums(1) = 3
nums(2) = 4
End Sub
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
lstBox.Items.Add(nums.Average)
lstBox.Items.Add(nums.Max)
End Sub
```
(A) 4 and 5
(B) 4 and 4
(C) 3 and 5
(D) 3 and 4
(A) 4 and 5
You might also like to view...
A(n) ________ is a brief, parenthetical reference that you place at the end of a sentence or paragraph
A) comment B) source C) annotation D) citation
The IsNumeric function returns a(n) ____________________ type value.
Fill in the blank(s) with the appropriate word(s).
The ____________________ tab in the Page Setup dialog box is used to add a gutter to a document.
Fill in the blank(s) with the appropriate word(s).
Cable media comes in all of the following types EXCEPT: _____.
A. coaxial B. Bluetooth C. twisted pair D. fiber optic