What will be the output of the following program when the button is clicked on?
```
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim word1, word2, word3, result As String
word1 = "The"
word2 = "English"
word3 = "Channel"
CatWords(word1, word2, word3, result)
txtBox.Text = result
End Sub
Sub CatWords(var1 As String, var2 As String,
word3 As String, ByRef final As String)
final = var1 & var2 & word3
End Sub
```
(A) TheEnglishChannel
You might also like to view...
The forward slash in Excel is used as the ________ sign
Fill in the blank(s) with correct word
FQDN stands for _______________.
Fill in the blank(s) with the appropriate word(s).
What is forward engineering?
What will be an ideal response?
Which button on the Header & Footer Tools Design tab do you click to make the header on the first page of a section different from the header on subsequent pages of the section?
A. Link to Previous B. Different First Page C. Different Odd & Even Pages D. Unique First Page