

InterviewSolution
Saved Bookmarks
1. |
The sum of 3 consecutive integers is 51 . which are they |
Answer» <html><body><p><a href="https://interviewquestions.tuteehub.com/tag/let-11597" style="font-weight:bold;" target="_blank" title="Click to know more about LET">LET</a> the consecutive integers be (x - 1), x and (x + 1)</p><p></p><p>Then, sun = x - 1 + x + x + 1 = <a href="https://interviewquestions.tuteehub.com/tag/3x-310805" style="font-weight:bold;" target="_blank" title="Click to know more about 3X">3X</a> = 51</p><p></p><p>→ x = 51/3 = <a href="https://interviewquestions.tuteehub.com/tag/17-278001" style="font-weight:bold;" target="_blank" title="Click to know more about 17">17</a></p><p></p><p>Hence, x - 1 = 16</p><p>x + 1 = <a href="https://interviewquestions.tuteehub.com/tag/18-278913" style="font-weight:bold;" target="_blank" title="Click to know more about 18">18</a></p><p></p><p>Therefore the consecutive integers are 16, 17 and 18</p></body></html> | |