What will be the output of the following program when the button is clicked?
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim x, y, z As Double
x = 3
y = 3
If x > y Then
z = x + y
Else
z = y - x
End If
txtBox.Text = CStr(z)
End Sub```
```
(A) 6
(B) 3
(C) 0
(D) No output
(C) 0
Computer Science & Information Technology
You might also like to view...
Match the following file extensions to the type of file they are associated with
I. odt A. Writer II. ods B. Impress III. odp C. Base IV. odb D. Calc
Computer Science & Information Technology
What interfaces are in the package java.lang?
What will be an ideal response?
Computer Science & Information Technology