Q15
What will be the output of the following Python code snippet? a=[1, 4, 3, 5, 2] b=[3, 1, 5, 2, 4] a==b set(a)==set(b)
A.
True
False
False
B.
False
False
False
C.
False
True
AnswerTrue
D.
True
True
True
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board