

MCQOPTIONS
Saved Bookmarks
1. |
Which is an equivalent code to invoke a function fun of class opt that expects two arguments p and q? |
A. | opt.fun(p,q); |
B. | fun(p,q); |
C. | opt.fun(p) && opt.fun(q); |
D. | opt(p,q); |
E. | None of these |
Answer» B. fun(p,q); | |