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

Join The Discussion