Q. What is the output of list(set([1, 2, 2, 3]))? (A) [1, 2, 3] (B) [1, 2, 2, 3] (C) [1, 3, 3] (D) [1, 1, 2, 3] ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (A) [1, 2, 3] Explanation: set removes duplicates, list converts it back to a list.