When a child class inherits the property of multiple parent classes, its known as Multiple Inheritance.
Java is not supported Multiple Inheritance, because if child class inherits the property of multiple parent class, and if multiple parents have the same method name, then at runtime it's difficult to the compiler to decide which method to execute from the child class.