InterviewSolution
Saved Bookmarks
| 1. |
Consider the following pseudo code.x = 0;for (i = 1 to n) for (j = 1 to 4i – 3) x = x + 1Find the value of x, when the above code is executed in a function.(A) n(B) 2n2 – n(C) 2n2 – 1(D) 2n |
| Answer» | |