Vidyalelo
Python · Q55

Python Sets MCQs: Exam

Programming · Python · question 55

Q55

What is the output of the following code:set1 = 1, 2set2 = 1, 2, 3, 4print(set1.issubset(set2))

A.
TRUE
Answer
B.
FALSE
C.
Error
D.
None

Answer: Option A

Solution

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