Home »
Python »
Python List MCQs
What do you mean by the ordered nature of the python list?
5. What do you mean by the ordered nature of the python list?
- The ordered nature of the list indicates that you can only store the data in sequence
- The ordered nature of the list indicates that you can store the data in any sequence
- The ordered nature of the list indicates that the elements which you will put after the creation of the list will be added from the last index
- The ordered nature of the list indicates that the elements which you will put after the creation of the list will be added from the first index
Answer: C) The ordered nature of the list indicates that the elements which you will put after the creation of the list will be added from the last index.
Explanation:
The ordered nature of the list indicates that the elements which you will put after the creation of the list will be added from the last index.