InterviewSolution
Saved Bookmarks
| 1. |
A= {1, 2, 3} and B= { x : x in N, x is a prime number less than 5}, Find A xx B and B xx A |
|
Answer» `B xx A= {(2,1)(3,1) (2,2) (3,2)(2,3)(3,3)}` |
|