Is java supports multiple inheritance? explain?
Answer Posted / praveenkumar
yes java supports multiple inheritance but not directly.
By implementing single inheritance we can acheive multiple
inheritance.See for example
class A{
some method();
}
class B extends A
{
}
class C extends B
{
}
like tht we can acheive multiple inheritance.
| Is This Answer Correct ? | 3 Yes | 18 No |
Post New Answer View All Answers
What is parsing a sentence?
What is the difference between static method and instance method in Java?
What is default switch case? Give example.
How to obtain a performance profile of java program
How many unicode characters are there?
How to sort an unsorted array in java?
What is the purpose of default constructor?
What is a protected void?
What are the different ways to handle exceptions?
what are three ways in which a thread can enter the waiting state? : Java thread
Difference between method overloading and overriding.
What is the epoch date?
Name few java util classes introduced with java 8 ?
What is the output of the below java program?
What does arrays sort do in java?