Multiple choice Choose the correct statement about the abstract class. An abstract class can be instantiated and must have a main method. An abstract class cannot be instantiated but has a main method. An abstract class cannot be instantiated and does not have a main method. An abstract class must be instantiated and does not have a main method. An abstract class also contains abstract methods. Reveal answer Fill a bubble to check yourself B Correct answer Explanation An abstract class is one that cannot be instantiated. All other functionality of the class still exists and its fields, methods and constructors are all accessed in the same manner. You just cannot create an instance of the abstract class.