Use the following code for the NEXT question: Function conjunction(lngA As Long)
ID: 3641870 • Letter: U
Question
Use the following code for the NEXT question:Function conjunction(lngA As Long) As Long
conjunction = lngA
End Function
Sub B()
Dim lngB(10) As Long
MsgBox lngB(9) 'ARRAY OR FUNCTION?
MsgBox conjunction(9) 'ARRAY OR FUNCTION?
End Sub
14. Answer the statement for the code above from the scope of Sub B:
a. lngB(9) refers to a function
conjunction(9) refers to a function
b. lngB(9) refers to an array
conjunction(9) refers to an array
c. lngB(9) refers to a function
conjunction(9) refers to an array
d. lngB(9) refers to an array
conjunction(9) refers to a function
Explanation / Answer
lngB(9) refers to an array conjunction(9) refers to a function