Q47
What will be the output of the following Python code? s1=1, 2, 3 s2=4, 5, 6 s1.isdisjoint(s2) s2.isdisjoint(s1)
A.
True
False
False
B.
False
True
True
C.
True
True
AnswerTrue
D.
False
False
False
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board