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 None 2. List and Tuple can be converted interchangeably Yes, I know No None 3. A Tuple can have elements of various data types Yes, ofcourse No None 4. We can add one or multiple elements in a tuple at a time Yes No None 5. A particular element of a tuple can be replaced with other value No way Yes, why not None 6. Size of tuple can change during the execution of code Yes No May be possible None 7. Membership operators works well with tuple as well Yes No None 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 None 9. A list can be one of the elements of a tuple Yes No None 10. Tuple occupies less memory than the list for exactly same number of elements Yes No None Related Posts