

InterviewSolution
1. |
Find the rank of the word ‘CHAT’ in the dictionary. |
Answer» The letters of the word CHAT in alphabetical order are A, C, H, T. To arrive the word CHAT, first, we have to go through the word that begins with A. If A is fixed as the first letter remaining three letters C, H, T can be arranged among themselves in 3! ways. Next, we select C as the first letter and start arranging the remaining letters in alphabetical order. Now C and A is fixed remaining two letters can be arranged in 2! ways. Next, we move on H with C, A, and H is fixed the letter T can be arranged in 1! ways. ∴ Rank of the word CHAT = 3! + 2! + 1! = 6 + 2 + 1 = 9 Note: The rank of a given word is basically finding out the position of the word when possible words have been formed using all the letters of the given word exactly once and arranged in alphabetical order as in the case of dictionary. The possible arrangement of the word CHAT are (i) ACHT, (ii) ACTH, (iii) AHCT, (iv) AHTC, (v) ATCH, (vi) ATHC, (vii) CAHT, (viii) CATH, (ix) CHAT. So the rank of the word occurs in the ninth position. ∴ The rank of the word CHAT is 9. |
|