

MCQOPTIONS
Saved Bookmarks
1. |
Consider the following code snippet namespace McqsMentorConsoleApplication function tail(o) { for (; o.next; o = o.next) ; return o; } Will the above code snippet work? If not, what will be the error? |
A. | No, this will throw an exception as only numerics can be used in a for loop |
B. | No, this will not iterate |
C. | Yes, this will work |
Answer» D. | |