Question 1 package name: org.all Project name: LanguageDetails Class name : Languageclass Methods : alllanguage package name: org.tamil Class name : Tamil Methods : tamillanguage package name: org.english Class name : English Methods : englishlanguage package name: org.telgu Class name : Telgu Methods : telgulanguage Description: create above 4 packages and call all your class methods into the Languageclass using hierarchical inheritance. Question 2 package name: org.india Project name: SouthIndia Class name : India Methods : india package name: org.tamilnadu Project name: SouthIndia Class name : TamiladuN Methods : tamillanguage package name: org.kerala Project name: SouthIndia Class name : kerala Methods : malayalam package name: org.andrapradesh Project name: SouthIndia Class name : AndhraPradesh Methods : telugu Description: create above 4 packages and call all your class methods into the India using multilevel inheritance. Question 3 Project :CollegeInformation Package :org.college Class :College Methods :collegeName(),collegeCode(),collegeRank() Class :Student Methods :studentName(),studentDept(),studentId() Class :Hostel Methods :HostelName() Class :dept Methods :deptName() Description: create above 4 class and call all your class methods into the Student using multilevel inheritance. QUestion 4 Project :Computer Class :Computer Methods :computerModel() Class :Desktop Methods :desktopSize() Description: create above 2 class and call all your class methods into the Desktop using single inheritance. Question 5 Project :LanguageDetails Package :org.lang Class :LanguageInfo Methods :tamilLanguage(),englishLanguage(),hindiLanguage() Class :StateDetails Methods :southIndia(),northIndia() Description: create above 2 class and call all your class methods into the LanguageInfo using single inheritance. Question 6 Project :EducationInformation Package :org.edu Class :Education Methods :ug(),pg() Class :Arts Methods :bsc(),bEd(),bA(),bBA() Class :Engineering Methods :bE(),bTech() Class :Medicine Methods :physiyo(),dental(),mbbs() Description: create above 4 class and call all your class methods into the Education using multilevel inheritance.