Q. 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); ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (A) opt.fun(p,q);