

InterviewSolution
Saved Bookmarks
1. |
Find the number of ways of selection of at least one vowel and oneconsonant from the word TRIlPLE. |
Answer» We have consonants T, R, P, L and vowels I, E. Number of ways of selecting at least one consonant `=2^(4)-1=15` Number of ways of selecting at least one vowel `=2^(2)-1=3` So, required number of selections `=15xx3=45` |
|