What is displayed when the button is clicked on?

```
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim a, b as String
Dim x as Integer
a = "How now brown cow."
b = "brown"
x = FindIt(a, b)
txtBox.Text = CStr(x)
End Sub
Function FindIt(z1 as String, z2 as String) As Integer
Dim x as Integer
x = z1.IndexOf(z2)
End Function
```
(A) "How now"
(B) 8
(C) 0
(D) An error
(E) None of the above

(C) 0

Computer Science & Information Technology

You might also like to view...

When you start PowerPoint 2016, what displays on the right side of the window?

A) Blank presentation and theme thumbnails B) A list of all PowerPoint files on the hard drive C) Recently-opened presentations D) A title slide for your presentation

Computer Science & Information Technology

The ________ cell is the current cell, indicated by a dark border

Fill in the blank(s) with correct word

Computer Science & Information Technology