Which two code snippets, added independently at line ***, can make the Buzzword class compile?
A.
this ();
B.
this (100);
C.
this (“Buzzword”);
D.
super ();
E.
super (100);
F.
super (“Buzzword”);
Explanation:
Which two code snippets, added independently at line ***, can make the Buzzword class compile?
A.
this ();
B.
this (100);
C.
this (“Buzzword”);
D.
super ();
E.
super (100);
F.
super (“Buzzword”);
Explanation:
A
F
It’s CF, A is invoking itself.
+1