Given the following:
public abstract class MyClass { abstract provideMe(); } public class MySubClass extends MyClass { }
Which statements are true?
B, C, E.
MyClass is a valid class; it contains an abstract method, so the class must also be abstract.
MySubClass must be declared abstract because it doesn't provide an implementation for the abstract method of its parent class.
An abstract class may not be instantiated but is a legal type for variables.