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 As String
word1 = "First"
word2 = "Second"
word3 = "Third"
Myproc(word1, word2, word3)
End Sub
Sub Myproc(var3 As String, var2 As String, var1 As String)
txtBox.Text = var1 & var2 & var3
End Sub
```
(A) FirstSecondThird
(B) ThirdSecondFirst
(C) SecondThirdFirst
(D) No output

(B) ThirdSecondFirst

Computer Science & Information Technology

You might also like to view...

To determine a 10% growth rate over a previous month sales, you would take the previous month's sales and:

A) multiply by 110%. B) divide by 10%. C) multiply by 10%. D) divide by 110%.

Computer Science & Information Technology

Referring to the accompanying figure, which of the following is pointed to by callout G?

A. the Start button B. the Search box C. the Pinned items list D. shut down options

Computer Science & Information Technology