InterviewSolution
Saved Bookmarks
| 1. |
If A = {2,4,6,8} and B = {6,8,10,12} then find A ∪ B. |
|
Answer» A = {2,4,6,8} and B = {6,8,10,12} A ∪ B = {2,4,6,8} ∪ {6,8,10,12} Common elements 6, 8 should be taken once = (2,4,6,8,10,12} |
|