Question: Question 14 What will the following code display? int number =6; System.out.println (number ++);// line 2 System.out. println (++number); // line 3 lirse 3: number
Question 14 What will the following code display? int number =6; System.out.println (number ++);// line 2 System.out. println (++number); // line 3 lirse 3: number is incremented by 1 ard then displayed, so the cutput is 8 line 3: number is cisplayed and then incremented by 1. 50 the output is 8 line 2: number is displayed and then incremented by 1. 50 the output is 6 line 3: number is displayed and then incremented by 1. so the output is 7 line 2: number is incremented by 1 and then displayed, 50 the output is 7 line 3 : number is incremented by 1 and then displayed. so the output is 7
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
