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
Computer Science & Information Technology
You might also like to view...
The Widow/Orphan control prevents a paragraph from splitting to display a single line at the top as an orphan or bottom as a widow
Indicate whether the statement is true or false
Computer Science & Information Technology
Consider the following definition of the recursive function mystery.int mystery(int num){ if (num
A. 50 B. 65 C. 120 D. 180
Computer Science & Information Technology