3. Given the following code :

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
    }
}

Which of the following, if inserted at the comment //Here 
will allow the code to compile and run without error?

   Select 2 correct answers:
A. b = m;
B. m = b;
C. d = i;
D. b1 = i;