Open In App

Python-Quizzes | Python Sets Quiz | Question 6

Last Updated : 18 Sep, 2020
Like Article
Like
Save
Share
Report

Question 6: 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}
(B) {0, 1, 2, 3, 4, 5, 6, 8}
(C) { 6, 8}
(D) None


Answer: (B)

Explanation: The “|” operator is used for union.

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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads