Q. 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); ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (D) o.m(x,y);