What is Inheritance? What is meant by Interface?
Sigiloso
Inheritance means one class can extend to another class. So that the codes can be reused from one class to another class. An interface is a template which has only method declarations and not the method implementation.