Which of the following is a valid header for a procedure that receives the address of a string variable and the address of an integer?
A. Private Sub GetInfo(ByRef strName As String, ByRef intAge As Integer)
B. Private Sub GetInfo(ByRef strName, ByRef intAge)
C. Private Sub GetInfo(ByVal strName As String, ByVal intAge As Integer)
D. Private Sub GetInfo(ByVal strName, ByVal intAge)
Answer: A
Computer Science & Information Technology
You might also like to view...
A ________ is a graphic representation of numeric data
A) legend B) chart C) cell D) table
Computer Science & Information Technology
The worst scenario for insertion sort is
a. 9 8 7 6 5 4 3 2 1 b. 1 9 2 8 3 7 4 6 5 c. 8 2 6 4 5 3 7 1 9 d. 5 6 3 8 9 2 1 7 4
Computer Science & Information Technology