Class A extends B implements C,D,E,F,................. {
//body part
}
i think that the above code is correct because in java multiple inheritance of Class is not supported, BUT we can implements any number of interface's.SO this can fulfill the uses of multiple inheritance.