InterviewSolution
Saved Bookmarks
| 1. |
How many 3-digits numbers can be formed using the digits (2,4,5,7,8,9), if no digit occurs more than once in each number?A. 80B. 90C. 120D. 140 |
|
Answer» Here, we have 6 digit . Since we have to find 3-digit numbers, the first digit can be filled in 6 ways, second digit can be filled in 5 and thrid digit can be filled in 4 ways. (`because` No digit is repeated) `therefore` The required number of digits `=6xx5xx4=120`. |
|