Multiple Choice
Which of the following procedures will keep track of the number of times it was called?
A) Private Sub KeepTrackByVal intCount As Integer) intCount += 1
End Sub
B) Private Sub KeepTrack) Dim intCount As Integer
IntCount += 1
End Sub
C) Private Sub KeepTrack) Static intCount As Integer
IntCount += 1
End Sub
D) Private Sub KeepTrack) Public intCount As Integer
IntCount += 1
End Sub
Correct Answer:

Verified
Correct Answer:
Verified
Q3: When a parameter is declared using the
Q5: A procedure may not be accessed by
Q9: Which of the following calls to the
Q11: What is the value of intTotal after
Q12: If you do not provide an access
Q16: Which of the following functions accepts a
Q17: Although you can omit the ByVal keyword
Q18: When calling a procedure, passed arguments and
Q19: Which debugging command executes a function call
Q21: Which is the correct way to define