

InterviewSolution
Saved Bookmarks
1. |
How many numbers lying between 100 and 1000 can be formed with the digits 0, 1, 2, 3, 4, 5, if the repetition of the digits is not allowed? |
Answer» total ways are `.^6P_3 - .^5P_2` `= (6!)/((6-3)!)- (5!)/((5-2)!)` `=6*5*4- 5*4` `= 5*5*4= 100` answer |
|