What will be the output of the following program when the button is clicked on?

```
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim word As String
word = "hairbrush"
Decapitate(word)
txtBox.Text = word
End Sub
Sub Decapitate(ByRef word As String)
'Chop the first letter off the word.
word = word.Substring(1)
End Sub
```
(A) airbrush
(B) hairbrush
(C) hairbrus
(D) h

(A) airbrush

Computer Science & Information Technology

You might also like to view...

When the footer is inactive, the footer text displays in ________

A) gray B) blue C) black D) green

Computer Science & Information Technology

Many people find that too many consecutive ________ can make a document hard to read

Fill in the blank(s) with correct word

Computer Science & Information Technology