InterviewSolution
Saved Bookmarks
| 1. |
How many distinct positive integers are possible with the digits 1,3,5,7 without repetition? |
|
Answer» Possible number of, Single-digit numbers =4 two-digit numbers =`4xx3=12` Three-digit numbers `=4xx3xx2=24` four-digit numbers `=4xx3xx2xx1=24`. Thus, total number of distinct positive integers without repetition `=4+12+24+24=64`. |
|