Python Quiz – Tuples in Python Welcome to your Python Quiz - Tuples in Python Name Email 1 Tuples and list are exactly same Not correct Absolutely correct 2 List and Tuple can be converted interchangeably Yes, I know No 3 A Tuple can have elements of various data types Yes, ofcourse No 4 We can add one or multiple elements in a tuple at a time Yes No 5 A particular element of a tuple can be replaced with other value No way Yes, why not 6 Size of tuple can change during the execution of code Yes No May be possible 7 Membership operators works well with tuple as well Yes No 8 Elements from the tuple can be extracted in the same way as that of a List Yes, in the same way No, method is different for each of them 9 A list can be one of the elements of a tuple Yes No 10 Tuple occupies less memory than the list for exactly same number of elements Yes No Related Posts