Q. How do you create a set with elements 1, 2 and 3?
β
Correct Answer: (C)
Both option1 and option2
Explanation: Both `set([1, 2, 3])` and `{1, 2, 3}` create a set with those elements.