- A List
- B Set
- C Dictionary
- D Tuple
- Share this MCQ
Answer:
B
Share this MCQ
- Sets are used to store multiple items in a single variable.
- Set is data types in Python used to store collections of data.
- A set is a collection which is unordered, unchangeable*, unindexed and uplicates not allowed.
- * Note: Set items are unchangeable, but you can remove items and add new items.
Share this MCQ