What two names are displayed in the list box when the button is clicked on?
```
Dim krispies(2) as String
Private Sub frmCereal_Load(...) Handles MyBase.Load
krispies(0) = "snap"
krispies(1) = "crackle"
krispies(2) = "pop"
End Sub
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
lstBox.Items.Add(krispies.Max)
lstBox.Items.Add(krispies.Last)
End Sub
```
(A) crackle and pop
(B) crackle and snap
(C) snap and crackle
(D) snap and pop
(D) snap and pop
Computer Science & Information Technology
You might also like to view...
A piece of paper with a pencil is the image used for the ________ icon
Fill in the blank(s) with correct word
Computer Science & Information Technology
In a merged document, labels are commonly aligned:
A) Center Right. B) Center Left. C) Top Left. D) Bottom Left.
Computer Science & Information Technology