Multiple inheritance refers toclass C extends A, BWhere A and B are not related. This cannot be done in Java.(Note that Java Interfaces can have multiple inheritance, for exampleinterface C extends A, B(Where A and B are interfaces)