Question
>>> a={5,6,7,8}
>>> b={7,8,9,10}
>>> len(a+b)
a.
8
b.
Error, unsupported operand ‘+’ for sets
c.
6
d.
Nothing is displayed
Posted under Python
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What is the output of the following piece of code?
Similar Questions
Discover Related MCQs
Q. If we have two sets, s1 and s2, and we want to check if all the elements of s1 are present in s2 or not, we can use the function:
View solution
Q. The difference between the functions discard and remove is that:
View solution
Q. The ____________ function removes the first element of a set and the last element of a list.
View solution
Q. Which of the following functions will return the symmetric difference between two sets, x and y?
View solution
Q. Set members must not be hashable. True or False?
View solution
Q. Which of these about a frozenset is not true?
View solution
Q. If a={5,6,7}, what happens when a.add(5) is executed?
View solution
Q. If a={5,6,7,8}, which of the following statements is false?
View solution
Q. Which of the following statements is used to create an empty set?
View solution
Q. Which of the following is not the correct syntax for creating a set?
View solution
Q. Which of these about a set is not true?
View solution
Q. Tuples can’t be made keys of a dictionary. True or False?
View solution
Q. What type of data is: a=[(1,1),(2,4),(3,9)]?
View solution
Q. If a=(1,2,3,4), a[1:-1] is
View solution
Q. What is the data type of (1)?
View solution
Q. Suppose t = (1, 2, 4, 3), which of the following is incorrect?
View solution
Q. Which of the following is a Python tuple?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Python? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!