

InterviewSolution
Saved Bookmarks
1. |
`A = {a,{b},c,{d,e}}` Find the number of subset of A which contains exactly two elements.A. 4B. 6C. 8D. 12 |
Answer» Correct Answer - B (i) Use the concept of subsets (ii) Count by number of different combinations of two elements possible by each elements with the other. |
|