The other tutor's solution is incorrect. You didn't say whether we can repeat digits or not. If we can repeat the digits, then: Choose the last digit 1 way as 0. Choose the first digit any of 9 ways (can't use 0) Choose the middle digit any of 10 ways (can use 0). That's 1*9*10 = 90 3 digit numbers divisible by 10, assuming digits can be repeated, such as 100, 990, etc. Answer: 90 ---------------------------- If we cannot repeat the digits, then: Choose the last digit 1 way as 0. Choose the first digit any of 9 ways Choose the middle digit any of 8 ways That's 1*9*8 = 72 3 digit numbers assuming digits cannot be repeated. Answer: 72 --------------------------- Edwin