InterviewSolution
Saved Bookmarks
| 1. |
A+=b++*5/a+++b ; a=4 b=13 |
|
Answer» a=34b=14Explanation:a=4+13*5/4+14 (from here the value in b=14)a=4+65/4+14a=4+16+14a=34This is done using JAVA's bodmas and ORDER of PRECEDENCE rule.Hope this HELPS:) |
|