In the list below, which subclass(es) of Component cannot be directly instantiated: a) Panel b) Dialog c) Container d) Frame The answer is Container. But why the Container can not be instantiated directly?
Laura, All the options you have given can be instantiated. In fact (d) is also correct. You can try this out: Container c = new Container(); Ramani has correctly pointed out that Conatiner is no longer an abstract class. Hope this helps -sampaths