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

```
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim name As String = "Washington"
Select Case name
Case "George"
txtBox.Text = "George"
Case "Wash"
txtBox.Text = "Wash"
Case "WASHINGTON"
txtBox.Text = "WASHINGTON"
Case Else
txtBox.Text = "Washington"
End Select
```
(A) WashWashington
(B) Washington
(C) WASHINGTONWashington
(D) No output


(B) Washington

Computer Science & Information Technology

You might also like to view...

Click an option in the section marked ____ in the accompanying figure to space out selected objects evenly by their edges or centers.

A. 1 B. 2 C. 3 D. 4

Computer Science & Information Technology

You can open the Insert Table dialog box by clicking the ____ button in the content placeholder.

A. Create Table B. Draw Table C. Insert Table D. Paint Table

Computer Science & Information Technology

If cell A2 contains the text string "red shorts", then =________(A2,3 ) will return the word "red"

A) SEARCH B) LEN C) LEFT D) MID

Computer Science & Information Technology

In a formula that includes both multiplication and addition, either can be performed first

Indicate whether the statement is true or false.

Computer Science & Information Technology