InterviewSolution
Saved Bookmarks
| 1. |
Find the sum of the first 15 multiples of 8. |
|
Answer» a=8, d=8 and n=15 `S_15=n/2(2a+(n-1)d)` `S_15=15/2(2(8)+(15-1)(8))` `S+15=960` |
|