M Mr. Dubey π Coach β 103.11K Points π Python Programming Q. What is the output of the following code? def foo(k): k[0] = 1 q = [0] foo(q) print(q) (A) [0]. (B) [1]. (C) [1, 0]. (D) [0, 1]. ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) [1].