(Choose 2 answers)
Given the following code.
Which of the following statements can be legally inserted in place of the comment //Here? (select two)
class Base{}
public class MyCast extends Base{
static boolean b1=false;
static int i = -1;
static double d = 10.1;
public static void main(String argv[]){MyCast m = new MyCast();
Base b = new Base();
//Here
}
}
A. b=m;
B. m=b;
C. d=i;
D. b1=i;