MCQOPTIONS
Saved Bookmarks
| 1. |
. What is the output of the following piece of code when executed in Python shell? >>> a=(1,2) >>> b=(3,4) >>> c=a+b >>> c |
| A. | (4,6) |
| B. | (1,2,3,4) |
| C. | Error as tuples are immutable |
| D. | None |
| Answer» C. Error as tuples are immutable | |