Inheritance in java Lecture by Ritu Kumawat (Inheritance in java)

when one class acquires the properties of another class then this concept is called inheritance. This is used for reuse the existing functionality. For Example: children acquire the properties of their …

Final Keyword in Java Lecture by Ritu Kumawat

Final keyword can be used: 1.With class name 2.With method name 3.With variable name Uses of final Keyword: 1. To prevent Inheritance: If we want to prevent a class from being …