Question #2207

What will be the output of the following VBA code?<br>Sub test()<br>Dim l as integer<br>Dim S as string<br>S = 'Time is money'<br>l = len(s)<br>Debug.print 'The length is' & l<br>End sub

A.
13
B.
The length is 11
C.
The length is 13
D.
THE LENGTH IS 13
Explanation

No explanation provided.