InterviewSolution
Saved Bookmarks
| 1. |
Is A∪B = B∪A?(a) True(b) FalseI have been asked this question in unit test.My enquiry is from Operation on Sets-1 in division Sets of Mathematics – Class 11 |
|
Answer» CORRECT ANSWER is (a) True For explanation: Let A = {1,2} and B = {2,3}. Here A∪B = {1,2,3} = B∪A. A∪B or B∪A is same set that CONTAINS all the elements of set A and set B. |
|