Java Package

© examsiri.com
Question : 10 of 16
 
Marks: +1, -0
Given:
1. public class MyClass {
2.
3.   public Integer startingI;
4.   public void methodA() {
5.    Integer i = new Integer(25);
6.    startingI = i;
7.    methodB(i);
8.   }
9.   private void methodB(Integer i2) {
10.    i2 = i2.intValue();
11.
12.   }
13. }

If methodA is invoked, which two are true at line 11? (Choose two.)
Go to Question: