Open In App

Python-Quizzes | Python Sets Quiz | Question 7

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

Article Tags :