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» ong>ANSWER: w = (2)+(3)+(6)%10 w = 2+3+4 w = 9 |
|