What will be displayed when the button is clicked on?

```
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim x, y As String
x = "tin"
y = "can"
Swap(x, y)
txtOutput.Text = x & " " y
End Sub
Sub Swap(ByRef x As String, y As String)
Dim temp As String
temp = x
x = y
y = temp
End Sub
```
(A) tin can
(B) can tin
(C) tin tin
(D) can can

(D) can can

Computer Science & Information Technology

You might also like to view...

What is the chief purpose of NAT?

What will be an ideal response?

Computer Science & Information Technology

What are his home directory, login shell, and user ID?

Gareth has this /etc/login entry: gareth:*:117:100:Gareth T:/users/gareth:/bin/bash

Computer Science & Information Technology