Which of the following statements should you use to call the CalcEnd procedure described in Review Question 6?
a. Call CalcEnd(intBegin, intSales, intPurchases, ByRef intEnding)
b. Call CalcEnd(ByVal intBegin, ByVal intSales, ByVal intPurchases, ByRef intEnding)
c. Call CalcEnd(ByRef intBegin, ByRef intSales, ByRef intPurchases, ByRef intEnding)
d. Call CalcEnd(intBegin, intSales, intPurchases, intEnding)
Answer: d. Call CalcEnd(intBegin, intSales, intPurchases, intEnding)
You might also like to view...
When the final value of an expression is assigned to a variable, it will be converted to
A) the smallest possible data type. B) the largest possible data type. C) the data type of the variable. D) the data type of the expression. E) none of the above.
Which of the following media attribute values is NOT supported by most browsers?
A. print B. screen C. all D. handheld
What are some common practices that can help to improve the readability and understanding of VBA code?
What will be an ideal response?
____ refers to the hiding of data and methods within an object.
A. Instance B. Inheritance C. Passed D. Encapsulation