InterviewSolution
Saved Bookmarks
| 1. |
How many three digit numbers are divisible by seven |
|
Answer» The first 3-digit number which is divisible by 7 is 105The last 3-digit number which is divisible by 7 is 994The list of 3-digit numbers divisible by 7 are105, 112, 119,…..994 which forms an A.PNow using the A. P Formula,T(n) = a + (n – 1)dWherea = 105d = 7T(n) = 994994 = 105 + (n – 1)7889 = 7n – 77n = 896n = 128∴ There are 128 3-digits number which are divisible by 7. 128 H |
|