Question - Can you create an instance of an abstract class?
Answer -
No. Instances of an abstract class cannot be created because it does not have a complete implementation. However, instances of subclass inheriting the abstract class can be created.