Java SE 8 Programmer 1Z0–808 Practice Full Test 1
© examsiri.com
Question : 45 of 84
Marks:
+1,
-0
class Caller {
private void init() {
System.out.println("Initialized");
}
private void start() {
init();
System.out.println("Started");
}
}
public class TestCall {
public static void main(String[] args) {
Caller c = new Caller();
c.start();
c.init();
}
}What is the result?
Go to Question: