Q. What is the result of {'a', 'b'} & {'b', 'c'}? (A) {'a', 'b', 'c'} (B) {'b'} (C) {'a'} (D) set() ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) {'b'} Explanation: The & operator returns the intersection of two sets.