STEPS the COMPUTER will take to solve a problem.

  1. Write the pseudocode for the following program - remember pseudocode is the STEPS the COMPUTER will take to solve the problem. A program that calculates and displays the total retail price of an item sold at a store. The total retail price of a sale item is the price of an item before sales tax plus the amount of sales tax on the item. The program will need to get the sales tax rate and the price of the item before sales tax in order to calculate the total retail price of the item. This program should output (display) the calculated amount of sales tax on the item and the total calculated total retail price of the item.
  2. Write the pseudocode for the following program. A program that calculates and displays a customer's bank balance at the end of a month. The customer’s bank balance at the end of a month is: the beginning bank balance + the total amount of monthly deposits made - the total amount of monthly withdrawals made + interest earned. The information the program will need to get from the user is: the beginning bank balance, the amount of monthly deposits, the amount of monthly withdrawals, and the monthly interest rate. The program should calculate the interest earned based on the ending bank balance before adding interest to it. The program should display the ending bank balance on the screen.
  3. Write the pseudocode for the following program. A program that calculates a sales person's bonus based on the amount of sales they generated for the month. The sales person's bonus is calculated by multiplying a bonus percentage by the amount of monthly sales the person generated. Make sure and ask the user of the program what their bonus percentage is and what their sales for the month are. The program should display the sales person's bonus on the screen.