Q. Which of the following function headers is correct? (A) def fun(a = 2, b = 3, c) (B) def fun(a = 2, b, c = 3) (C) def fun(a, b = 2, c = 3) (D) def fun(a, b, c = 3, d) ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (C) def fun(a, b = 2, c = 3)