Q. What is the result of set('aabcc')?
β
Correct Answer: (A)
{'a', 'b', 'c'}
Explanation: set() removes duplicates and returns unique elements.