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

```
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim num As Integer = 10
DisplayMult(num)
num = 5
DisplayMult(num)
num = 2
DisplayMult(num)
End Sub
Sub DisplayMult(num As Integer)
If num <= 3 Then
txtOutput.Text &= CStr(3 * num)
Else
If num > 7 Then
txtOutput.Text &= CStr(7 * num)
End If
End If
End Sub
```
(A) 7014
(B) 30614
(C) 706
(D) No output

(C) 706

Computer Science & Information Technology

You might also like to view...

Which of the following is a remote administration system that allows a user to control a computer across a TCP/IP connection using a simple console orGUI application?

A) Back Orifice B) Flash Back C) She Dun D) Fin Fisher

Computer Science & Information Technology

A _____________ is a formally negotiated agreement between two parties. It is a contract that exists between customers and their service provider, or between service providers.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology