[Updated] Goldman Sachs Aptitude Test Questions and Answers
Practice List of TCS Digital Coding Questions !!!
Take 50+ FREE!! Online Data Interpretation Mock test to crack any Exams.

Technical Discussion :: Java

2. What is Inheritance?

Answer:

Inheritance means, we use the methods or function or other public members of the parent class by child class. So to do this we have to extend the the parent class through it child class.
For Ex:- Amitabh bacchan's fames inherited by his child Abhishek.

Program Ex:-

class A{
print(){
System.out.println("HELLLO ");
}}

class B extends class A{
public static void main(String... args){
A pr=new A();
pr.print();
}}

Things to remember:---
* Every class in java inherited by its parent class Object which is in the package:- java.lang.Object when the class is not extended by any child class only.
* Java does not support "Multiple Inheritance" except in the case of Interface Concept.
Because one class cannot extend more than one class but Interface able to extend more than one.

Asked In :: Tech Mahindra iGate Syntel Inc. Accenture AT&T Societe Generale

Post Your Answer Here:

Name *
Email
Alert me

Post Your Reply Here:

Report Error

Please Login First Click Here

Post Your Reply Here:

Report Error

Please Login First Click Here