Beginner
Python
Q33 / 101
What is a set in Python?
Correct! Well done.
Incorrect.
The correct answer is B) An unordered collection of unique elements
B
Correct Answer
An unordered collection of unique elements
Explanation
Sets store unique elements with O(1) add/remove/lookup. They are unordered and do not support indexing.
Progress
33/101