Oracle
1Z0-851 · Question #235
1Z0-851 Question #235: Real Exam Question with Answer & Explanation
Sign in or unlock 1Z0-851 to reveal the answer and full explanation for question #235. The question stem and answer options stay visible for context.
Question
Given: 04. class Payload { 05. private int weight; 06. public Payload (int w) { weight = w; } 07. public void setWeight(int w) { weight = w; } 08. public String toString() { return Integer.toString(weight); } 09. } 10. 11. public class TestPayload { 12. static void changePayload(Payload p) { /* insert code */ } 13. public static void main(String[] args) { 14. Payload p = new Payload(200); 15. p.setWeight(1024); 16. changePayload(p); 17. System.out.println("p is " + p); 18. } 19. } Which code fragment, inserted at the end of line 12, produces the output p is 420?
Exhibit
Options
- Ap.setWeight(420);
- Bp.changePayload(420);
- Cp = new Payload(420);
- DPayload.setWeight(420);
- Ep = Payload.setWeight(420);
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.
