

InterviewSolution
Saved Bookmarks
1. |
A = {1, 2, 3, 4, 5, 6}; B = {2, 4, 6, 8, 10}. Find the intersection of A and B. |
Answer» Given sets are A = {1, 2, 3, 4, 5, 6} and B = {2, 4, 6, 8, 10} A ∩ B = {1, 2, 3, 4, 5, 6} ∩ {2, 4, 6, 8, 10} = {2, 4, 6} |
|