Whats the solution to #2. Please use Gaddis Pseudocode
37. Write pseudocode for the main module and Display Wel come Message module. You do not have to write pseudocode for the other three modules. Add pseudocode for the Input Data, Calculate Average, and Output Results modules to the pseudocode created in Review Exercise 37. 39. Construct a flowchart for this program (viewing it as a single module). 40. Give three examples of reasonable input data for testing this program. Programming Challenges Each of the following Programming Challenges can be solved by a program tbat performs thre basic tasks -Input Data, Process Data, and Output Resuits. For each problem, use pseudocode to design a suitable program to solve it. Be sure to identify the data type of eacb variable used I. Prompt for and input a saleswoman's sales for the month (in dollars) and her commission rate (as a percentage). Output her commission for that month. Note that you will need to convert the percentage to a decimal. You will need the tollowing variables: SalesAmount CommissionRate CommissionEarned You will need the following formula: CommissionEarned SalesAmount (CommissionRate/100) 2. The manager of the Super Supermarket would like to be able to the unit price for products sold there. To do this, the program should input the name and price of an item per pound and its weight in pounds and ounces. Then it should determine and display the unit price (the price per ounce) of that item and the total cost of the amount purchased. You will need the following variables: Pounds Ounces ItemName PoundPrice TotalPrice UnitPrice You will need the following formulas: UnitPrice PoundPrice/16 Total Price = PoundPrice * (Pounds + Ounaes/16) 3. The owners of the Super Supermarket would like to have a program employee's net pay. The input for this program is an employee ID number hourly rate of pay, and number of regular and overtime hours worked that computes the monthly gross pay of their employees as well as the mar hours and overtime