

MCQOPTIONS
Saved Bookmarks
1. |
_ Which is an equivalent code to invoke a function m of class o that expects two arguments x and y?$? |
A. | o(x,y); |
B. | o.m(x) && o.m(y); |
C. | m(x,y); |
D. | o.m(x,y); |
Answer» E. | |