Question: NEED HELP WITH PROGRAM NUMBER 2 ONLY. Create a Word document that contains: Analysis using IPO Task Hierarchy Chart Pseudo Code Tips for Final Project

NEED HELP WITH PROGRAM NUMBER 2 ONLY.
Create a Word document that contains:
Analysis using IPO
Task Hierarchy Chart
Pseudo Code
Tips for Final Project
For #2Problem
//Pseudo-code for opening employees.dat
declare InputStream employeeData
Open employeeData with "employees.dat"
//Pseudo code for closing the input stream (input file)
close employeeData
//Pseudo code for reading data from the input stream
Read EmloyeesData employeeID
//Pseudo code for write a prompt, a tab or data to the report (screen)
Print Enployee ID:,Tab, Tab, Tab, employeeID
//Pseudo code for writing a string literal with center justification to the report (screen)
Print Center-Justity(Enployee Report)
//Follow the following control sequence in main()and add your code
main()
{
//Variable declarations
//Add code
//Opening employees.dat
//Add code
//Printing report header
callprintHeader()
//Reads and prints employee records until end of file is reached
while(NOT(eof(employeeData)))
{
//Read one record from employeeData
//Add code
//Prints one record
callprintRecord(idNum, firstName, lastName, wage)
}
close employeeData
}
//Prints header of the report in the required format
moduleprintHeader()
{
//pageCenterfunction: places string on horizontal center of page
//horizontalLinefunction: creates horizontal line across page
//Add code for this module
//
//
}
//Prints employee records in the required format
moduleprintRecord(string idNum, string firstName, string lastName, real wage)
{
//Add code for this module
//
}
NEED HELP WITH PROGRAM NUMBER 2 ONLY. Create a

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!