1.

Consider the following code snippet
opt.fun(p,q);

Which is an equivalent code for the above code snippet?

A. opt.fun(p && q);
B. opt(fun)["p","q"];
C. opt.fun(p) && opt.fun(q);
D. opt["fun"](p,q);
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs