Vidyalelo
Python · Q47

Python Sets MCQs: Exam

Programming · Python · question 47

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
B.
False
True
C.
True
True
Answer
D.
False
False

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board