

InterviewSolution
Saved Bookmarks
1. |
If A and B are two sets such that A ⊂ B, then Find: A ∩ B |
Answer» A ∩ B means A intersection B. Common elements of A and B come in this group. Given A ⊂ B i.e. B is having all elements that is present in A. ∴ A ∩ B = A. Example: A = {1,2} B = {1,2,3,4} A ∩ B = {1,2} = A |
|