Vidyalelo
Python · Q78

Python Sets MCQs: Exam

Programming · Python · question 78

Q78

What will be the output of the following Python code? a=1,2,3 b=1,2,3 c=a.issubset(b) print(c)

A.
True
Answer
B.
Error, no method called issubset() exists
C.
Syntax error for issubset() method
D.
False

Answer: Option A

Solution

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