Cognizant — Interview Questions
Aptitude · Reasoning · English · CS — Corporate & Campus Interview Prep
Showing 1–1 of 1 questions
Q.1
Hard
Cognizant
What will be the output? int x = 5; System.out.println(++x + x++);
Correct Answer:
B. 12
Explanation:
++x increments x to 6 first, then x++ uses 6 and increments to 7. So 6 + 6 = 12