If you want a function to modify the value stored in a variable, how do you need to pass the variable?

A. by value
B. by reference
C. by invocation
D. by parameter


Answer: B

Computer Science & Information Technology

You might also like to view...

Which of the following sections of code will calculate the monthly payment for a $150,000 house with a 30 year mortgage at an annual rate of 5.5%, and assign the result to dblMPay?

a. ```Dim dblAIntRate as Double = 5.5 Dim dblLoanAmt as Double = 150000 Dim intYears as Integer = 30 Dim dblMPay as Double dblMPay = Pmt(dblAIntRate / 12, intYears * 12, -dblLoanAmt) ``` b. ```Dim dblAIntRate as Double = 5.5 Dim dblLoanAmt as Double = 150000 Dim intYears as Integer = 30 Dim dblMPay as Double dblMPay = Pmt(dblAIntRate, intYears, -dblLoanAmt) ``` c. ```Dim dblAIntRate as Double = 5.5 Dim dblLoanAmt as Double = 150000 Dim intYears as Integer = 30 Dim dblMPay as Double dblMPay = Pmt(dblAIntRate / 12, intYears, -dblLoanAmt) ``` d. ```Dim dblAIntRate as Double = 5.5 Dim dblLoanAmt as Double = 150000 Dim intYears as Integer = 30 Dim dblMPay as Double dblMPay = Pmt(dblAIntRate, intYears * 12, -dblLoanAmt) ```

Computer Science & Information Technology

What Windows log stores events collected from other systems, to which the system has a subscription?

A. System B. Remotes C. Forwarded Events D. Servers

Computer Science & Information Technology

Describe the usual procedure for installing the driver and configuration utility for a wireless USB device.

What will be an ideal response?

Computer Science & Information Technology

Create a separate table with the same structure as the Booking table to hold archive records. Using the INSERT statement, copy the records from the Booking table to the archive table relating to bookings before 1st January 2013. Delete all bookings before 1st January 2013 from the Booking table.

What will be an ideal response?

Computer Science & Information Technology