5
(Choose 1 answer)
Given the following class definition which of the following can be legally placed after the com
A. Base b = new Base(10):
B. this ("Hello". 10);
C. super():
D. MyOver m = new MyOver();
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}