Multiple Choice Question (MCQ)
Question:
What will be the output of the following VBA code?
Sub test()
Dim l as integer
Dim S as string
S = 'Time is money'
l = len(s)
Debug.print 'The length is' & l
End sub
A.
13
B.
The length is 11
C.
The length is 13
D.
THE LENGTH IS 13
Correct Answer: The length is 13