Question: i need the code by java Exercises: Exercise 1- UML Digram: Let us suppose we have five classes which are the Person, Student, Employee, Faculty,
i need the code by java
Exercises: Exercise 1- UML Digram: Let us suppose we have five classes which are the Person, Student, Employee, Faculty, and Staff Classes. Moreover, let us make Student and Employee as subclasses of Person, and make Faculty and Staff as subclasses of Employee. Please create a UML digram for those classes based on the following instructions: a) The Person class has the following private properties: name: String and its accessor and mutator methods . . b) The Student class has the following methods and private properties: studentid: long Constructor with two arguments: name, studentld Override toString() in the Student class to return the name and studentld c) The Employee class has the following private properties: employeeld: int and its accessor and mutator methods d) The Faculty class has the following methods and private properties: rank: String Constructor with three arguments: name, employeeld, rank Override toString() in the Faculty class to return the name, employeeld, and rank e) The Staff class has the following methods and private properties: title: String Constructor with three arguments: name, employeeld, title Override toString() in the Staff class to return the name, employeeld, and title
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
