CBSE BOARD X, asked by tanvisheth, 3 months ago

Give Output of the following: int a=4; a=a++ * ++a%2; System.out.println(a);

Answers

Answered by jenni875
2

working: a = 4 × 6 % 2 = 24 % 2 = 0

answer: 0

Similar questions