InterviewSolution
Saved Bookmarks
| 1. |
The sum of three consecutive natural numbers is36. What are the numbers? |
|
Answer» Let the numbers be x, x + 1, x + 2.Given, sum of numbers = 36 x + (x + 1) + (x + 2) = 36 3x + 3 = 36 3x = 33 x = 11∴ The numbers are 11, 12, 13. do you know any other like this |
|