Computer Science, asked by sruthi123123, 9 hours ago

int x=2, y-5, z=3; System.out.println (x*-5); System.out.println (x+5); y+=x+=z; System.out.println (x+""+y+""+z);​

Answers

Answered by arunmukharjee1234
1

Answer:

yes

++x increments the value of x and then returns x

x++ returns the value of x and then increments

Explanation:

Mark me as brainleast

Similar questions