Inheritance in Java Flashcards
1
Q
What do you mean by inheritance in java?
A
Inheritance is one of the key principle of object oriented programming. Through inheritance, one class can inherit the properties of another class. The class from which properties are inherited is called super class and the class to which properties are inherited is called sub class.
2
Q
More on Java inheritance
A
https://javaconceptoftheday.com/inheritance-in-java/