Answered step by step
Verified Expert Solution
Link Copied!

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

Problem(s)1. General Process List a. Write a series of 15 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 2. 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 $1.75 to ship each cubic inch of the box, and we also add a $3.50 fuel surcharge overall. There is no sales tax. So, a second formula to do this part is shipCost =(boxVolume *1.75)+3.50. To keep the program simple, we simply include the 1.75 and 3.50 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 2-9 and Figure 2-22.* 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 3 Input variables, 1 Processing variable and 1 Output variable. The algorithm can be done in 4 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. Desk-check 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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

SQL Instant Reference

Authors: Gruber, Martin Gruber

2nd Edition

0782125395, 9780782125399

More Books

Students also viewed these Databases questions

Question

How do modern Dashboards differ from earlier implementations?

Answered: 1 week ago