Question: What will the following program segments display? a) x = 2; y = x++; System.out.println(y); b) x = 2; System.out.println(x++); c) x = 2; System.out.println(--x);

What will the following program segments display?
a) x = 2;
y = x++;
System.out.println(y);
b) x = 2;
System.out.println(x++);
c) x = 2;
System.out.println(--x);
d) x = 8;
y = x--;
System.out.println(y);

Step by Step Solution

3.49 Rating (156 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

a 2 y x here it is post increment operator so in this case first the va... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Starting Out With Java From Control Structures Questions!