Output Questions for Class 10 ICSE Computer Applications
Give the output of the following expression:
a+= a++ + ++a + --a + a--; when a = 7;
Java
Java Operators
ICSE 2016
166 Likes
Answer
a = 39
Working
a+= a++ + ++a + --a + a--
⇒ a = a + (a++ + ++a + --a + a--)
⇒ a = 7 + (7 + 9 + 8 + 8)
⇒ a = 7 + 32
⇒ a = 39
Answered By
84 Likes