InterviewSolution
Saved Bookmarks
| 1. |
A={1,2,3,4) and B={a,e,i,o,u) are two sets. In how many ways can a number from a or a letter from B be chosen? |
|
Answer» As no element of A is in B, we can apply the sum rule of disjoint counting. `thereforen(AcupB)=n(A)+n(B)=4+5=9`. |
|