1.

What is the output of the following code? >>> a=(1,2,3,4) >>> del(a[2])

A. Now, a=(1,2,4)
B. Now, a=(1,3,4)
C. Now a=(3,4)
D. Error as tuple is immutable
Answer» E.


Discussion

No Comment Found