In Java, can an abstract class have constructors?
A. Only if the constructors are marked as "private"
B. Yes, an abstract class can have constructors
C. Only if the constructors are marked as "static"
D. None of These
Answer: Option B
A. A contract specifying a set of methods that a class must implement
B. A class that cannot be instantiated
C. A class that contains only static methods
D. A subclass of the Object class
In Java, can a class implement multiple interfaces?
A. Interfaces cannot be implemented by classes
B. Only abstract classes can implement interfaces
C. No, a class can only implement one interface
D. Yes, a class can implement multiple interfaces
What is the purpose of an abstract class in Java?
A. To declare abstract methods
B. To provide a base class with common methods and fields
C. To make a class final
D. None of These
Join The Discussion