Which two import statements can make the a.b.parent class compliable?

Given two classes in separate files: Which two import statements can make the a.b.parent
class compliable?

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.*;



Leave a Reply 1

Your email address will not be published. Required fields are marked *