Home » 
        Python » 
        Python Tuples MCQs
    
        
    What do you mean by the ordered nature of python tuples?
    
    
    
	5. What do you mean by the ordered nature of python tuples?
    
      - The ordered nature of tuples indicates that you can only store the data in sequence
 
      - The ordered nature of tuples indicates that the items are retained in the order in which they are inserted
 
      - The ordered nature of tuples indicates that the elements which you will put after the creation of the tuples will be added from the last index
 
      - The ordered nature of tuples indicates that the elements which you will put after the creation of the tuples will be added from the first index
 
    
    Answer: B) The ordered nature of tuples indicates that the items are retained in the order in which they are inserted.
    Explanation:
    The ordered nature of tuples indicates that the items are retained in the order in which they are inserted.