InterviewSolution
Saved Bookmarks
| 1. |
Evaluate the following if the value of x=7, y=5 x+=x++ +x + x*y |
|
Answer» Answer: 56 Explanation: = X + X + X + X*Y = 7 + 7 + 7 + ( 7 * 5) = 21 + 35 = 56 |
|