Oracle
1Z0-850 · Question #50
1Z0-850 Question #50: Real Exam Question with Answer & Explanation
Sign in or unlock 1Z0-850 to reveal the answer and full explanation for question #50. The question stem and answer options stay visible for context.
Question
Given:
- class Exam {
- private int num = 0;
- public int getNum() {
- return num;
- }
- }
- public class Sample {
- public static void main(String[] args) {
- Exam e = new Exam();
- e.num = 100;
- int num = e.getNum();
- System.out.println("The number is: " + num);
- }
- } What is the result?
Options
- AThe number is: 100
- BCompilation fails.
- CThe number is: 0
- DAn exception is thrown at runtime.
Unlock 1Z0-850 to see the answer
You've previewed enough free 1Z0-850 questions. Unlock 1Z0-850 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.