InterviewSolution
Saved Bookmarks
| 1. |
The sum of three consecutive numbers is 87. The greatest among these three number is: |
|
Answer» 30 Let the NUMBERS be X, x + 1 and x + 2 Then, x + (x + 1) + (x + 2) = 87 3x = 84 x = 28 Greatest NUMBER, (x + 2) = 30. |
|