Vidyalelo
Python · Q109

Python Lists MCQs: Exam Practice for List Concepts

Programming · Python · question 109

Q109

What will be the output of the following Python code? 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]
Answer
D.
[1, 2, 3]

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board