Q991. What is the output of the following Python program demonstrating mutable default arguments?
### The Code Snippet: ```python def foo(x=[]): x.append(1) return x print(foo()) print(foo()) ``` ### Output: ```python [1] [1, 1] ``` ### Technical Explanation: In Pytho...