92) 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
Answer is:
The length is 13
Related Programming with VBA MCQ with Answers
Answer is: