

MCQOPTIONS
Saved Bookmarks
1. |
Consider the following code snippet o.m(x,y); Which is an equivalent code for the above code snippet? |
A. | o.m(x) && o.m(y); |
B. | o["m"](x,y); |
C. | o(m)["x","y"]; |
D. | o.m(x && y); |
Answer» C. o(m)["x","y"]; | |