Is java supports multiple inheritance? explain?
Answer Posted / vivek dubey
NO java supports Multilevel Inheritance and
not the Multiple Inheritance
Multilevel Inheritance
class A{
}
class B extends A{
}
class c extends B{
}
Multiple Inheritance
class c extends A,B{ // nOt supported
}
| Is This Answer Correct ? | 17 Yes | 0 No |
Post New Answer View All Answers
Is list ordered in java?
Can we use different return types for methods when overridden?
What all access modifiers are allowed for top class ?
Explain different types of thread priorities ?
What are different types of states exist for a thread?
What are some examples of variable costs?
what is the difference between the methods sleep() and wait()? : Java thread
Does treeset allow null in java?
How do I find and replace in word?
What is float in java?
Why do we use threads in java?
What is exception hierarchy in java?
How can we create a thread in java?
What are the types of java languages?
What does += mean coding?