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

Sort a file ‘data1’ and put the sorted file in a file called ‘data1.sorted’. Give the command that uses both input and output redirection.

What will be an ideal response?

Computer Science & Information Technology

Numbered list items in Word are usually used to display data that has some type of order such as chronological, importance, or sequence

Indicate whether the statement is true or false

Computer Science & Information Technology

To analyze data from an Access table or query, export the data to this file type to access its functions and features

a. Excel worksheet b. XML c. Word document

Computer Science & Information Technology

PnP devices are another name for plug and play devices

Indicate whether the statement is true or false

Computer Science & Information Technology