What is the output of the following code:
set1 = {1, 2, 3}
set2 = {1, 2}
print(set1.issuperset(set2))
set2 = {1, 2}
print(set1.issuperset(set2))
A. TRUE
B. FALSE
C. Error
D. None
Answer: Option A

Join The Discussion