1.

What is the output when following code is executed ? def f(values): values[0] = 44 v = [1, 2, 3] f(v) print(v)

A. [1, 44].
B. [1, 2, 3, 44].
C. [44, 2, 3].
D. [1, 2, 3].
Answer» D. [1, 2, 3].


Discussion

No Comment Found