

InterviewSolution
Saved Bookmarks
1. |
In how many ways can the letters of the word PERMUTATIONS be arranged if the(i) words start with P and end with S,(ii) vowels are all together,(iii) there are always 4 letters between P and S? |
Answer» (i) `P ----------S` `=(10!)/(2!)` (ii) `--------` `= (8!)/(2!) * 5!` (iii) ` P ---- S` `(.^10P_4*7!*2)/(2!)` `= .^10P_4*7!` |
|