

InterviewSolution
Saved Bookmarks
1. |
If a set contains n elements, then write the number of elements in its power set. |
Answer» Let A be the set with n elements. Then power set of A contains all the subsets of A. Each member of A has two possibilities either present or absent. ⇒ Total possible subsets of A are 2×2×2×…n times= 2n ∴ number of elements in power set of A are 2n. 2n elements are present in power set. |
|