Question
Programming Assignment in Java OOP: Please write program in one. Thank you! Class: Faculty Description: Write the Faculty.java class that can be instantiated to represent
Programming Assignment in Java OOP:
Please write program in one. Thank you!
Class: Faculty Description: Write the Faculty.java class that can be instantiated to represent a faculty member. A faculty member is defined by his/her first and last name, his/her highest level of education, his/her educational background and the department to which they belong. The following private data fields along with their public setter and getter methods should be implemented:
- firstName
- lastName
- levelOfEducation
- academicBackground
- department
Implement a toString method that displays a Faculty's information as follows:
For reference variable "perto" instantiated below:
Faculty perto = new Faculty("Hector", "Perto", "MS", "Aerospace Engineering", "Math, Engineering, Comp Sci" );
Sample Output:
Faculty: Hector Perto MS in Aerospace Engineering Department: Math, Engineering, Comp Sci
This is OOP please
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started