ICSE Class 9 Computer Applications
Question 13 of 21
Operators in Java — Question 13
Back to all questions 13
Question Question 13
Evaluate the following expressions, if the values of the variables are a = 2, b = 3 and c = 3
i. a - (b++) * (--c)
ii. a * (++b) %c
i. a - (b++) * (--c)
⇒ 2 - 3 * 2
⇒ 2 - 6
⇒ -4
ii. a * (++b) %c
⇒ 2 * 4 % 3
⇒ 8 % 3
⇒ 2