1.

Int x=5;x=(x++)*2+3*(- - x);

Answer»

25Explanation:x = x++ * 2 + 3 * --xx= 5 * 2 + 3 * 5X= 10 + 15x= 25



Discussion

No Comment Found