InterviewSolution
Saved Bookmarks
| 1. |
A computer program is used to read N and print the sum 1 + 2 + 3 +.....+ N. If N = 10, the print out will show the number |
| Answer» SUM = 12 + 22 + 33 + 44 + 52 + 62 + 77 + 82 + 92 + 102 = 385. | |