Our academic experts are ready and waiting to assist with any writing project you may have. From simple essay plans, through to full dissertations, you can guarantee we have a service perfectly matched to your needs.
GET A 40% DISCOUNT ON YOU FIRST ORDER
ORDER NOW DISCOUNT CODE >>>> WELCOME40
List the names of subroutines of the hierarchy chart, and then write complete pseudocode for the following problem. You will not have to create a data dictionary for this exercise. Problem: A distributor of Christmas items ships a lot of Christmas tree ornaments. They only have one size shipping-box. Sixteen ornaments will fill a shipping-box. Produce the pseudocode logic for an algorithm that will compute the number of shipping-boxes required for the number of ornaments to be shipped. The information is given as follows: – The output will consist of a screen display showing the number of shipping-boxes needed for a customer’s order. – The input will consist of the number of ornaments ordered by a customer, entered from the keyboard. – The processing will compute the number of boxes needed to fulfill the order. The number of boxes is computed as: number of ornaments ordered divided by the number of ornaments that will fill a box. If there is a remainder, the number of boxes must be incremented by one. Note: Your solution should contain a mainline, and at least three subroutines. (Points : 30)