Q. What will `print({1, 2, 3} & {2, 3, 4})` output?
β
Correct Answer: (B)
{2, 3}
Explanation: `&` is the intersection operator for sets.