Set 19 Practice Mode

Set Completed!

0 / 3

0%

Q2206
Permalink
What will be the output of the following VBA code?<br>Sub test()<br>a = 'Computer operator'<br>Debug.Print left(a,10)<br>End sub
Q2207
Permalink
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
Q2208
Permalink
What will be the output of the following VBA function? <br> Sub stg()Str = 'Mathematics' <br> Debug.Print right(str,6) <br> End sub