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