From the Java fact that all class in Java have a parent class as Object. But the same Java says that it doesn't support multiple inheritance. But what this code mean ?
public class A extends B
{
//Blah blah blah
}
From the above code it means that Class A extends Class B. Now Class A also have inherited the properties of Object class which is the super class of B. Is this doesn't mean that Class A have inherited both Class B and Object Class, this what we called Multiple inheritance right?
So now Java supports Multiple inheritance, if not then what is the answer for the above code(which shows multiple inheritance)