One of the main concepts in OOP is _____________ That allows to use the features ( methods )of one class in another?
Libraries
Inheritance
polymorphism
abstraction
Identify the child class in the java statement. public class Student extends Person{
public
Student
Person
extends
In Method Overriding the following the following conditions hold. Select more than one that apply
Child class method must have same name as in the parent class.
Child class method must have same parameter as in the parent class.
Child class method must have same return type as in the parent class
Child class method must have different name as in the parent class.
Child class method must have different return type as in the parent class
Child class can have different method signature
Inheritance enhances the ability to reuse existing code.
An object of a sub class can not be referenced by a variable of a super class type