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

```
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim number As Double = 3
DoubleAndSquare(number)
txtBox.Text = CStr(number)
End Sub
Sub DoubleAndSquare(ByRef myVar As Double)
myVar = myVar + myVar
myVar = myVar * myVar
End Sub
```
(A) block scope
(B) procedure scope
(C) class scope
(D) None of the above


(B) procedure scope

Computer Science & Information Technology

You might also like to view...

Please name and describe the most popular types of document production software.

What will be an ideal response?

Computer Science & Information Technology

In the Venetian Blind schema design, named complex types, element groups, and attribute groups can be ______ throughout the schema.

A. reused B. local C. nested D. global

Computer Science & Information Technology

If you would like to get a security report about a website, you can click on the ________ icon when it is available

A) star B) gear C) padlock D) question mark

Computer Science & Information Technology

Define process and thread.

What will be an ideal response?

Computer Science & Information Technology