Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Does Java support multiple Inheritance?

Answers were Sorted based on User's Feedback



Does Java support multiple Inheritance?..

Answer / santhosh

As per my knowledge java does not support multiple
inheritance through interfaces.Only the people copying the
syntax and saying like that.


my view is what is there in interfaces to inherit?


Because there is nothing to inherit from interfaces,all the
methods are by default public and all the variables are
public static final by default.

Is This Answer Correct ?    0 Yes 3 No

Does Java support multiple Inheritance?..

Answer / tewodros tesema

yes.actually java suports multiple inheritance
example:
class A{
int a=10;
}
class b extends A{
int b=3;
}
clss c extends b{
int c=a+b;
system.out("result"+c);
}
here calss b in herits a and clas c in herits b the it also
in herits a through b. also since java uses interfaces it
also suports multiple inheritance.

Is This Answer Correct ?    2 Yes 29 No

Post New Answer

More Core Java Interview Questions

What does singleton mean in java?

0 Answers  


Write a program to solve producer consumer problem in java?

0 Answers  


What is the difference between Static and final?

1 Answers  


What is difference between == and === in js?

0 Answers  


Hi Friends, I am beginner in java. what i know about synchonized keyword is,If more that one 1 thread tries to access a particular resource we can lock the method using synchronized keyword. Then after that how the lock is released and how next thread access that.Please explain with example.

5 Answers  


How to display all the prime numbers between 1 and 100

0 Answers  


How do you do absolute value in java?

0 Answers  


What is a singleton class in Java?

0 Answers  


Can we convert list to set in java?

0 Answers  


all are saying java doesn't support multiple inheritance but by default Object class is super class for all the user defined classes and we can extend atmost one class so each class can extend more than one class so java supports multiple inheritance?i am confused with this,pls any one explain me.

4 Answers  


What are different types of inner classes ?

0 Answers  


Can a final variable be null?

0 Answers  


Categories