InterviewSolution
Saved Bookmarks
| 1. |
The sum of two consecutive multiples of 2 is 18. Find the numbers. |
|
Answer» Let first multiple of 2 be x. So, next multiple of 2 = x + 2 According to question, x + x + 2 = 18 ⇒ 2x = 18 – 2 = 16 ⇒ x = 8 Thus, 8 and 10 are required numbers. |
|