InterviewSolution
Saved Bookmarks
| 1. |
What is the sum of first n terms of the AP a, 3a, 5a,…. |
|
Answer» Correct Answer - `n^(2)a` Required sum ` = (n)/(2)[2a +(n-1) xx 2a] = n(na) = n^(2)a`. |
|