Computer Applications

Evaluate the following if the value of x = 7, y = 5:

x += x++ + x + ++y

Java Operators

6 Likes

Answer

  x += x++ + x + ++y

⇒ x = x + (x++ + x + ++y)

⇒ x = 7 + (7 + 8 + 6)

⇒ x = 7 + 21

⇒ x = 28

Answered By

2 Likes


Related Questions