InterviewSolution
Saved Bookmarks
| 1. |
Find two consecutive numbers where thrice the first number is more than twice the second number by 5.1). 5 and 62). 6 and 73). 7 and 84). 9 and 10 |
|
Answer» LET TWO consecutive number be x and x + 1 According to QUESTION, ⇒ 3x - 2(x + 1) = 5 ⇒ 3x - 2x - 2 = 5 ⇒ x = 7 ∴ Two numbers are 7 and 8 |
|