Oracle
1Z0-809 · Question #24
1Z0-809 Question #24: Real Exam Question with Answer & Explanation
Sign in or unlock 1Z0-809 to reveal the answer and full explanation for question #24. The question stem and answer options stay visible for context.
Question
Given:
public class ScopeTest {
int j, int k;
public static void main(String[] args) {
ew ScopeTest().doStuff();
}
void doStuff1() {
int x = 5;
doStuff2();
System.out.println("x");
}
void doStuff2() {
System.out.println("y");
}
int y = 7;
System.out.println("y");
for (int z = 0; z < 5; z++) {
System.out.println("y");
System.out.println("z");
}
Which two items are fields?
Options
- Aj
- Bk
- Cx
- Dy
- Ez
Unlock 1Z0-809 to see the answer
You've previewed enough free 1Z0-809 questions. Unlock 1Z0-809 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.