Q. What is the result of {'a', 'b'} & {'b', 'c'}?
β
Correct Answer: (B)
{'b'}
Explanation: The & operator returns the intersection of two sets.