Explore topic-wise MCQs in Python.

This section includes 4 Mcqs, each offering curated multiple-choice questions to sharpen your Python knowledge and support exam preparation. Choose a topic below to get started.

1.

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?

A. s2.issubset(s1)
B. s2.issuperset(s1)
C. s1.issuperset(s2)
D. s1.isset(s2)
Answer» B. s2.issuperset(s1)
2.

{1, 2}

A.
B. {1, 2}
Answer» C.
3.

The ____________ function removes the first element of a set and the last element of a list.

A. remove
B. pop
C. discard
D. dispose
Answer» E.
4.

{(3, 4), (1, 2)}

A. Error
B. {(4, 2), (3, 1), (4, 1), (5, 2)}
C. {(3, 1), (4, 2)}
Answer» C. {(3, 1), (4, 2)}