Menu

[Solved]Python Program 5 Design Pseudocode Implement Source Code Program Name Weeklyhours Compute Q37101048

IN PYTHON ONLY !! Program #5 : Design (pseudocode) andimplement (source code) a program (name it WeeklyHours) to computethe total weekly hours for 3 employees. The program main methoddefines a two-dimensional array of size 3×7 to store employers’daily hours for the week. Each row represents one employee and eachcolumn represent one day of the week such that column 0 designatesMonday, column 1 designates Tuesday, etc. The program main methodpopulates the array with random numbers between 0 and 10 and thenprints out the array in rows and columns as shown below. The mainmethod then calls method addHours() that takes a two-dimensionalarray as a parameter and displays the total weekly hours for eachemployee as shown below. Document your code and properly label theoutputs as shown below.

Sample run 1:

Employees Data:

           MonTue Wed Thu Fri Sat Sun

Employee1   5    3   2    9    6   5    7

Employee2   7    6   8    5    5   4    5

Employee3   1    2   2    1    5   8    7

Employee# Weekly Hours

—————————-

  1           37

  2           40

  3           26

Sample run 2:

Employees Data:

           MonTue Wed Thu Fri Sat Sun

Employee1   10   2   7    2    0   3    8

Employee2   5    6   1    5    1   4    2

Employee3   1    5   2    6    4   8    7

Employee# Weekly Hours

—————————-

  1           32

  2           24

  3           33

IN PYTHON ONLY !! Program 2: Re-workprogram #5 (WeeklyHours) from the previous assignment such that

1. The program prints out the day an employee worked mosthours.

2. The program outputs are displayed in ascending order (stored)by Weekly Hours. Notice that we modifying method addHours()todisplay the outputs sorted by total weekly hours for each employeeas shown below.

Sample run 1:

Employees Data:

           MonTue Wed Thu Fri Sat Sun

Employee1   5    3   2    9    6   5    7

Employee2   7    6  8    5   5    4    5

Employee3   1    2   2    1    5   8    7

Employee1 worked most hours on Thursday

Employee2 worked most hours on Wednesday

Employee3 worked most hours on Saturday

Employee# Weekly Hours

—————————-

  3           26

  1           37

  2           40

Sample run 2:

Employees Data:

           MonTue Wed Thu Fri Sat Sun

Employee1   10   2   7    2    0   3    8

Employee2   5    6   1    5    1   4    2

Employee3   1    5   2    6    4   8    7

Employee1 worked most hours on Monday

Employee2 worked most hours on Tuesday

Employee3 worked most hours on Saturday

Employee# Weekly Hours

—————————-

  2           24

  1           32

  3           33

Expert Answer


Answer to IN PYTHON ONLY !! Program #5 : Design (pseudocode) and implement (source code) a program (name it WeeklyHours) to comput… . . .

OR


Leave a Reply

Your email address will not be published. Required fields are marked *