Question 1
Consider the Java code given below.
1 class Example{ 2 public void functionOne(){ 3 // ... 4 functionTwo(); 5 // ... 6 } 7 public void functionTwo(){ 8 // ... 9 }10 public static void functionThree(){11 // ...12 Example e = new Example();13 e.functionOne();14 // ...15 }16 public static void main(String[] args) {17 // ...18 functionThree();19 }20 }During execution of Line 14 in the above code, the activation record of which method is at the top of the stack of activation records?
