Open In App

Python-Quizzes | Python Sets Quiz | Question 7

Like Article
Like
Save Article
Save
Share
Report issue
Report

Question 7: What is the output of the following program?




A = {0, 2, 4, 6, 8}; 
B = {1, 2, 3, 4, 5}; 
  
  
print(A & B) 


(A) {0, 1, 2, 3, 4, 5, 6, 8}
(B) {0, 1, 3, 5, 6, 8}
(C) {2, 4}
(D) {0, 8, 6}


Answer: (C)

Explanation: The “&” operator is used for intersection.

Quiz of this Question
Please comment below if you find anything wrong in the above post


Last Updated : 18 Sep, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads