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