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 is deserialization and how do we do deserialization?

3 Answers   Synechron,


What does method mean?

0 Answers  


What is the use of parse function in java?

0 Answers  


Can inner class extend any class?

0 Answers  


Can we define a package statement after the import statement in java?

0 Answers  


How long will it take to learn java?

0 Answers  


what is the volatile modifier for? : Java thread

0 Answers  


what is meant by encapsulation?

0 Answers   Aspire,


what are three ways in which a thread can enter the waiting state? Or what are different ways in which a thread can enter the waiting state? : Java thread

0 Answers  


How you can force the garbage collection?

0 Answers  


How many bits does a boolean take?

1 Answers  


How applets will communicate with each other?

1 Answers  


Categories