Java
Create a class Employee that has the attributes first name, last name, Job title, salary, phone number, address, and Employee ID. First name, last name, and address are all of type string, salary is of type double, and phone number is of type integer. ID must be defined as a separate It has an 8-digit number that consists of three parts. The first digit (left to right) represent the century of employment if it was before 2000 then it is 1 else it is 2 then the second two digits represent the year of employment. The last 5 digits represents a serial number. JobTitle is of type enum, each type has job title code (String) and hour wage (double) that is related to that code. The types are listed in the following table: Job Tiale Job Title Code Hour Wage Consultant C ProjectManager PM EngineerENG Technician TECH Coordinatr CORD You should create an application class Employeelnfo that asks the user to enter the number of employees he/she wishes to input/view, create a reference array of type Employee, enter employees' information and then view the information of all the employee entered. The job title is entered as a code. For the salary, the program should ask the user to enter the number of projects the employee has worked on this month, and then the number of hours he worked on each of the projects. The program then calculates the salary using the following formula: The hourly age is taken from the JobTitle Enumeration Sample Run Enter the number of employees: 3 Employee 1 First Name: Ali Employee 1 Last Name: Mohammed Employee 1 Job Title Code: TECH Employee 1 Phone Number: 9987010 Employee 1 Address: KuwaitBlock 12 Employee 1 Year of Employment: 1998 Employee 1 Number of projects: 3 Employee 1 Project 1 hours: 20 Employee 1 Project 2 hours: 50 Employee 1 Project 3 hours: 20 Employee 2 First Name: Raef Employee 2 Last Name: Jawad Employee 2 Job Title Code: ENG Employee 2 Phone Number: 9987111 Employee 2 Address: Heshref Block 1 Employee 2 Year of Employment: 2000