Given the following class definition which of the following can be legally placed after the comment //Here?
(Choose 1 answer)
class Base{
public Base(int i){}}
public class MyOver extends Base{
public static void main(String arg]){MyOver m = new MyOver(10);}
MyOver(int i){super(i);}
}
MyOver(String s, int i){this (i);//Here}
A. MyOver m = new MyOver();
B. super();
C. this("Hello", 10);
D. Base b = new Base(10);
Osh