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

In a business environment, PowerPoint presentations can be stored on a centrally located Slide Library that resides on a server.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

To connect to the Internet in a home network, use a router.?

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

Variables are classified according to their

a. value b. data type c. names d. location in the program

Computer Science & Information Technology

Which core function is sent by the agent after the SNMP manager queries an agent with a GetRequest or GetNextRequest?

A. Set B. Get C. Response D. Trap

Computer Science & Information Technology