InterviewSolution
Saved Bookmarks
| 1. |
If `A={a,b},B={c,d},C={d,e}`, then `{(a,c),(a,d),(a,e),(b,c),(b,d),(b,e)}` is equal toA. `Ann(BuuC)`B. `Auu(BnnC)`C. `Axx(BuuC)`D. `Axx(BnnC)` |
|
Answer» Correct Answer - C Clearly, the set of first elements of ordered pairs in the given set is (a,b) and the set of second elements is {c, d, e}. `therefore{(a, c),(a,d),(a,e),(b,c),(b,d),(b,e)}` `={a,b}xx{c,d,e}=Axx(BuuC)` |
|