Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Problem ( s ) 1 . General Process List a . Write a series of 1 5 steps for the process Clean the bathroom in
Problems General Process List a Write a series of steps for the process Clean the bathroom in your home This is not a computer problem, and it doesn't have variables or computer logic type structures. It's just a basic process list that you could give to anyone to follow. List steps are relevant, complete and correct Follows the properties of a good list Shipping Program a Consider the following computer programming problem: Bills Freight Service ships boxes worldwide and they need a program to help determine the shipping cost of a single box. Shipping cost is based on the volume of the box shipped. Volume is determined by inputting the length, width and height of the box in inches. There are no other inputs. The volume is computed from the formula boxVolume boxLength boxWidth boxHeight The shipping cost is based on the fact that it costs $ to ship each cubic inch of the box, and we also add a $ fuel surcharge overall. There is no sales tax. So a second formula to do this part is shipCost boxVolume To keep the program simple, we simply include the and right in the second formula, these are not variables or inputs. Finally, once the shipping cost is known we have to display it to the user, then the program ends. b Have a look at the IPO charts in your book, especially Figure and Figure They are good conceptual models to use though they are missing the "End" at the end of the Algorithm that you must always have. c Write up an IPO chart for this problem. Be sure to have a Process title, Input Variables, Processing Variables, Output Variables and Algorithm sections. As a hint, there are Input variables, Processing variable and Output variable. The algorithm can be done in steps. Some notes: Be sure to use the problem description as a close guide you can use the variable names in there, and you should use the formulas as well. Do NOT add any extra inputs or outputs. Some people might want to display the volume of the box, for example. Don't do that. Just do what the description asks for. d Deskcheck your solution. Run through it step by step and see if the correct result is generated. If not, fix your solution and try it again, etc. as needed. This is a vital step and must be done, even though you will not turn in your desk check. Input variables section present and correct Processing variables section present and correct Output variables section present and correct Algorithm correct
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started