

InterviewSolution
Saved Bookmarks
1. |
If A = {5} and B = {5, 6}, write down all possible subsets of A × B. |
Answer» A = {5} B = {5, 6} A × B = {(5, 5), (5, 6)} All the possible subsets of A × B are, {} {(5, 5)} {(5, 6)} {(5, 6), (5, 6)} |
|