Vidyalelo
Python · Q38

MCQs on Python Tuples: Exam

Programming · Python · question 38

Q38

What will be the output of the following Python code? >>> a=[(2,4),(1,2),(3,9)] >>> a.sort() >>> a

A.
[(1, 2), (2, 4), (3, 9)]
Answer
B.
[(2,4),(1,2),(3,9)]
C.
Error because tuples are immutable
D.
Error, tuple has no sort attribute

Answer: Option A

Solution

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