Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

CIST 1305 Program Design and Development FINAL INDIVIDUAL PROJECT Employee Data Application (100 points) Program 1) A small company is moving all its employee data

image text in transcribed

CIST 1305 Program Design and Development FINAL INDIVIDUAL PROJECT Employee Data Application (100 points) Program 1) A small company is moving all its employee data to a computer. To make a smooth transition, a software program will permit the data entry personnel to enter data into a file. Design a program that writes the employees.dat file. The program should accept user input until the user indicates there are no more records to write. The Employees file contains four fields (see the Input File Description). The program will use the employee ID as criteria to determine a current employee. Validate the employee ID and employee wage fields per the requirements below. You may use any of the library functions presented in Chapter 6 of the textbook to assist in validation. Your validation routines should include error messages and allow the user to correct an input error. Use an array to hold the valid ID numbers provided below. The Input File Description is the same for both programs Process: The user has a stack of employees' information from over 25 years of being in business. There are more employee records than current employees. The user enters the ID number from the stack and, if the ID is valid (tested by the program), continues to enter the rest of that employee's data (names and wage). If the ID is not valid, then the user sets aside that employee and moves to the next one in the stack The program must support this process. No data should be entered for an employee that does not have an ID found in the system (valid list of numbers is below) Program assumptions: Employee ID: May not be more than 10 characters long. The number must exist in the list of valid employee ID's. Valid ID Numbers: RE49762358, PR156125, OF45461, RE68566547, PR156984 Employee Wage: The number may not be zero nor larger than $45.50 Program 2) Design a program that reads the contents of the employees.dat file and prints all the data within it. Format the report as designated in the Printer Spacing Chart below. The last name should print first followed by a comma, and then the first name. On the same line, the ID number should appear separated from the name by a few blank spaces (you may use TAB). Add more white space before displaying the employee's wage. Use the EOF function to determine when the last record has been read Deliverables: Design the logic for both programs and submit using pseudocode. Submit all appropriate documentation for each program: program analysis, custom function analysis, hierarchy chart, internal documentation. The source should be well formatted and organized You should perform a full deskcheck prior to submitting. Submit two program files to the project drop box. This is an INDIVIDUAL project. CIST 1305 Program Design and Development FINAL INDIVIDUAL PROJECT Employee Data Application (100 points) Program 1) A small company is moving all its employee data to a computer. To make a smooth transition, a software program will permit the data entry personnel to enter data into a file. Design a program that writes the employees.dat file. The program should accept user input until the user indicates there are no more records to write. The Employees file contains four fields (see the Input File Description). The program will use the employee ID as criteria to determine a current employee. Validate the employee ID and employee wage fields per the requirements below. You may use any of the library functions presented in Chapter 6 of the textbook to assist in validation. Your validation routines should include error messages and allow the user to correct an input error. Use an array to hold the valid ID numbers provided below. The Input File Description is the same for both programs Process: The user has a stack of employees' information from over 25 years of being in business. There are more employee records than current employees. The user enters the ID number from the stack and, if the ID is valid (tested by the program), continues to enter the rest of that employee's data (names and wage). If the ID is not valid, then the user sets aside that employee and moves to the next one in the stack The program must support this process. No data should be entered for an employee that does not have an ID found in the system (valid list of numbers is below) Program assumptions: Employee ID: May not be more than 10 characters long. The number must exist in the list of valid employee ID's. Valid ID Numbers: RE49762358, PR156125, OF45461, RE68566547, PR156984 Employee Wage: The number may not be zero nor larger than $45.50 Program 2) Design a program that reads the contents of the employees.dat file and prints all the data within it. Format the report as designated in the Printer Spacing Chart below. The last name should print first followed by a comma, and then the first name. On the same line, the ID number should appear separated from the name by a few blank spaces (you may use TAB). Add more white space before displaying the employee's wage. Use the EOF function to determine when the last record has been read Deliverables: Design the logic for both programs and submit using pseudocode. Submit all appropriate documentation for each program: program analysis, custom function analysis, hierarchy chart, internal documentation. The source should be well formatted and organized You should perform a full deskcheck prior to submitting. Submit two program files to the project drop box. This is an INDIVIDUAL project

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Students also viewed these Databases questions