InterviewSolution
Saved Bookmarks
| 1. |
Find the value of w the following mathematical expression in Java programming language:[a=2, b=4, c=6]w=a++ + --b + c++%10; |
|
Answer» Answer: w = 2+3+4 w = 9 |
|