Question: Write a defining diagram (IOP chart) and a program that uses a set of parallel arrays, one for employee names and one to store each
Write a defining diagram (IOP chart) and a program that uses a set of parallel arrays, one for employee names and one to store each of those employees job titles. The program will use header logic format that requests input from the user as follows: First the user will input the number of employees, followed by that number of employee names and their job titles. Use a module to build an array to store the employee name and then another module to go through the names and build an array and store job titles. The use another module that queries the user for a job title and displays all employee names with that job title.
| INPUT | PROCESSING | OUTPUT |
| Emp name | Prompt for number of employees, number of employee names, job titles | Emp name |
| Emp Job Title | Store employee names and job title in arrays | Emp Job Title |
| # of Emp | Displays employee names with job title |
|
|
| Compare job title |
|
|
|
|
|
Start
DECLARE STRING [] empName
DECLARE STRING [] jobTitle
DECLARE INT numberOfEmp
This is all I got & Im not sure what to do next. Please no JAVA! Just basic pseudocode.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
