Oracle
1Z0-851 · Question #28
1Z0-851 Question #28: Real Exam Question with Answer & Explanation
Sign in or unlock 1Z0-851 to reveal the answer and full explanation for question #28. The question stem and answer options stay visible for context.
Question
Given: public class Pass { public static void main(String [] args) { int x = 5; Pass p = new Pass(); p.doStuff(x); System.out.print(" main x = " + x); } void doStuff(int x) { System.out.print(" doStuff x = " + x++); } } What is the result?
Options
- ACompilation fails.
- BAn exception is thrown at runtime.
- CdoStuff x = 6 main x = 6
- DdoStuff x = 5 main x = 5
- EdoStuff x = 5 main x = 6
- FdoStuff x = 6 main x = 5
Unlock 1Z0-851 to see the answer
You've previewed enough free 1Z0-851 questions. Unlock 1Z0-851 for full answers, explanations, the timed quiz mode, progress tracking, and the master PDF. Question stem and options stay visible so you can still see what's on the exam.