Vidyalelo
Python · Q58

MCQs on Python Tuples: Exam

Programming · Python · question 58

Q58

Is the following Python code valid? >>> a=(1,2,3) >>> b=a.update(4,)

A.
Yes, a=(1,2,3,4) and b=(1,2,3,4)
B.
Yes, a=(1,2,3) and b=(1,2,3,4)
C.
No because tuples are immutable
Answer
D.
No because wrong syntax for update() method

Answer: Option C

Solution

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