InterviewSolution
Saved Bookmarks
| 1. |
If the sum and difference of two numbers are 20 and 8 respectively, then the difference of their square is: |
|
Answer» 160 Let the numbers be x and y. Then, x + y = 20 and x - y = 8 x2 - y2 = (x + y)(x - y) = 20 * 8 = 160. |
|