Online Access Free 1Z0-803 Practice Test
Exam Code: | 1Z0-803 |
Exam Name: | Java SE 7 Programmer I |
Certification Provider: | Oracle |
Free Question Number: | 216 |
Posted: | Sep 08, 2025 |
Class StaticField {
static int i = 7;
public static void main(String[] args) {
StaticFied obj = new StaticField();
obj.i++;
StaticField.i++;
obj.i++;
System.out.println(StaticField.i + " "+ obj.i);
}
}
What is the result?