Vidyalelo
Python · Q39

Python Sets MCQs: Exam

Programming · Python · question 39

Q39

What will be the output of the following Python code? >>> a=4,5,6 >>> b=2,8,6 >>> a+b

A.
{4,5,6,2,8}
B.
{4,5,6,2,8,6}
C.
Error as unsupported operand type for sets
Answer
D.
Error as the duplicate item 6 is present in both sets

Answer: Option C

Solution

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