Identify all the attributes for the employee class identify


Assignment: Programming for Networking

Purpose

This assignment assesses the basic concepts of programming; students should be able to demonstrate their achievements in the following unit learning outcomes:

a. Describe the fundamental principles of object-oriented programming;

b. Interpret a user's needs while dealing with simple program specifications;

c. Design a simple class using UML notation;

d. Create a simple application based on UML design and the incremental development process of coding, debugging, and testing;

e. Apply basic control structures - sequence, repetition, and selection - to program development;

f. Produce simple interactive applications.

Description

This assignment focuses on programming basics; expressions, variables, constants, static methods and loops.

John runs a cafe in the inner suburbs of Sydney. Due to the growing number of patrons, cafe has decided to take on extra casual employees. In order to manage payroll for his employees, John has decided to develop an employee payroll management system. Details of each employee to be maintained in the system will include; employee id, name, sex (M or F), date of birth, phone number, number of hours worked, hourly rate, gross pay, net pay, and income tax payable.

The gross pay is calculated as the number of hours worked multiplied by pay per hour while net pay is calculated as the difference between gross pay and income tax payable of which income tax payable is calculated by multiplying gross pay by an income tax rate of 20%.

For example, an employee who has worked a total of 30 hours with an hourly rate of $18 will have; gross pay=30*18=540
income tax payable=20%*540=108 net pay=540-108=432

Task Requirements

Imagine you have been invited to develop this system, familiarise yourself with the problem description and complete the following tasks.

1. Develop a UML class diagram based on the problem description. The name of the class should be of the form MITnnnnnEmployee where MITnnnnn is your MIT ID.

a. Identify a constructor for the class
b. Identify all the attributes for the Employee class
c. Identify all the set and get methods for each of the attributes identified in 1.b

2. Write a Java implementation of the UML diagram defined in 1. In your class, include comments describing the function of the class, the name of the programmer and the date of implementation.

3. Write a Java program (driver class) named PayrollCalculator with a main method. Within the main method, you will create(instantiate) an object of your implementation class in 2, and other create methods for calculating wages for the employees. Include comments describing the function of the program, the name of the programmer and the date of implementation.

a. Declare all variables required for calculations as class variables.

b. Include static methods to calculate the gross pay, income tax payable and the net pay.

c. Once you have calculated the gross pay, income tax payable and net pay. Invoke the methods in correct order so that when your program executes, it should be able to produce an output as an employee's pay slip like the example below.

1765_Pay-Slip.jpg

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: Identify all the attributes for the employee class identify
Reference No:- TGS02766046

Expected delivery within 24 Hours