If we were to call the MakeDouble and ChangeArg methods shown below, using the following statements, what value would be assigned to lblResult.Text?

```
Dim intValue As Integer = 20
ChangeArg(intValue)
lblResult.Text = MakeDouble(intValue).ToString()

Function MakeDouble (ByVal intArg As Integer) As Integer
Return intArg * 2
End Function

Sub ChangeArg2(ByRef intArg As Integer)
' Display the value of intArg.
lstOutput.Items.Add(" ")
lstOutput.Items.Add("Inside the ChangeArg procedure, " &
"intArg is " & intArg.ToString())
lstOutput.Items.Add("I will change the value of intArg.")
' Assign 0 to intArg.
intArg = 0
' Display the value of intArg.
lstOutput.Items.Add("intArg is now " & intArg.ToString())
lstOutput
End Sub
```

a. 0
b. 20
c. 40
d. (cannot be determined)


a. 0

Computer Science & Information Technology

You might also like to view...

A copy constructor must receive its argument by reference because:

a. Otherwise the constructor will only make a copy of a pointer to an object. b. Otherwise infinite recursion occurs. c. The copy of the argument passed by value has function scope. d. The pointer needs to know the address of the original data, not a temporary copy of it.

Computer Science & Information Technology

________ are the initial values that are displayed in a new record prior to data entry

Fill in the blank(s) with correct word

Computer Science & Information Technology

The Windows Firewall with Advanced Security snap-in enables you to configure monitoring. Monitoring displays a summary of enabled firewall settings and provides links. Which of these is not a link?

a. Firewall b. ICS c. Active Connection Security Rules d. Security Associations

Computer Science & Information Technology

The goal of early large-scale computers was to automate as muchmanual processing of business information as possible

Indicate whether the statement is true or false

Computer Science & Information Technology