Given two classes in separate files: Which two import statements can make the a.b.parent
class compliable?
A.
import a.b.c.Child;
B.
import a.*;
C.
import a.b.c.*;
D.
import a.b.c.Parent;
E.
import a.b.*;
Given two classes in separate files: Which two import statements can make the a.b.parent
class compliable?
A.
import a.b.c.Child;
B.
import a.*;
C.
import a.b.c.*;
D.
import a.b.c.Parent;
E.
import a.b.*;
ac