Day3 - Polymorphism, Abstraction: Project:Employeedetails
Day3 - Polymorphism, Abstraction: Project:Employeedetails
1. Project :EmployeeDetails
Package :org.emp
Class :Employee
Methods :empId()
Description
You have to overload the method empId() based on different datatype in
arguments
2. Project :UniversityInformation
Package :org.univ
Class :University
Methods :ug(),pg()
Class :College
Methods :ug(),pg()
Description:
ug(),pg() is just a templete in University class and You have to override
the method ug(),pg() in College class.
Project :Computer
Interface :HardWare
Methods :hardwareResources()
Interface :Software
Methods :softwareResources()
Class :Desktop
Methods :desktopModel()
Description:
create 2 Interface and archieve multiple inheritance.