

InterviewSolution
Saved Bookmarks
1. |
If `A {2,{3,4},5{6,7,8}}`. Then write all the non-empty proper subsets of A. |
Answer» Correct Answer - `{2},{{3,4}},{5},{{6,7,8}},{2,{3,4}},{2,5},{2,{6,7,8}},{{3,4}5},{{3,4}},{6,7,8}},{2,{3,4},5},{2,{3,4},{6,7,8}},{{3,4},5{6,7,8}}` i.e, 14 | |