1.

. Is the following piece of 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
D. No because wrong syntax for update() method
Answer» D. No because wrong syntax for update() method


Discussion

No Comment Found