Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Java image text in transcribed
image text in transcribed
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

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Programming With Visual Basic .NET

Authors: Carsten Thomsen

2nd Edition

1590590325, 978-1590590324

Students also viewed these Databases questions

Question

3. Identify cultural universals in nonverbal communication.

Answered: 1 week ago

Question

2. Discuss the types of messages that are communicated nonverbally.

Answered: 1 week ago