Set 18 Practice Mode

Set Completed!

0 / 5

0%

Q2201
Permalink
Which scope does the variable declared with dim and remains in the existence only as long as the procedure in which if is declared is running?
Q2202
Permalink
What will be the output of the following VBA code? <br> Sub test() <br> a = 9 <br> Debug.Print Sqr(a) <br> End sub
Q2203
Permalink
What will be the output for the following VBA code?Debug.print<br>DateDiff('yyyy','1/12/2016','31/1/2017')
Q2204
Permalink
What will be the output of the following VBA code?<br>Sub test()<br>x = 'institue'<br>Debug.print Format(x,'>')<br>End sub
Q2205
Permalink
What will be the output of the following VBA code?<br>Sub test()<br>Dim S AS string<br>S = 'wholehearted'<br>Debug.Print mid(s,6,4)<br>End sub