InterviewSolution
Saved Bookmarks
| 1. |
If a = 10 then write the output of the following :System.out.print(++a = = a++ ? false : true); |
|
Answer» Answer: ++a => pre-increment operator a++ => post-increment operator so, ++a == a++ indicates 11 == 11 so, output will be true Like and Mark as BRAINLIEST, it REALLY MOTIVATES! |
|