InterviewSolution
Saved Bookmarks
| 1. |
A computer program is used to read M and print the sum 2 + 4 + 6 + 8 +.........+ 2M. If M = 9 , the print out will show the number |
| Answer» SUM = 2 + 4 + 6 + 8 + 10 + 12 + 14 + 16 + 18 = 90. | |