Answered You can hire a professional tutor to get the answer.
Hi I need help to create this milestone one assignment that uses from zybooks can someone please help me with this assignment please i really need it...
Hi I need help to create this milestone one assignment that uses from zybooks can someone please help me with this assignment please i really need it done by tonight.
CS 200 Milestone One
Guidelines and Rubric
Overview:
For this milestone, you must choose one of the activities from zyBooks
and develop pseudocode or a flowchart for a basic input/output program. You
may use the flowchart or pseudocode developed in Module Two or choose another input/output activity, but it must be from zyBo
oks.
Prompt:
For this milestone
, you will choose one
activity
that
represent input/output problem solving using flowcharts or pseudocode. (
Your final project will
include a second activity r
elated to control structures and a
third activity of your choice that you found particularly interesting or challengin
g. ) You may use the
flowchart or pseudocode developed in Module Two or choose another input/output activity, but it must be from zyBooks.
Specifically, the following
critical elements
must be addressed:
I.
Submit an
input/output
activity that uses
a flowch
art or
pseudocode.
A.
Describe the programming
best practices
you used in accurately completing this task by annotating
your code
: Include where best practices
were implemented
and why you used them.
B.
Explain the
problem
-solving
approaches you employed
while
completing this task
. Include this information in your code annotations, and
be
sure to address the tool(s) you used to complete this
task
.
Note:
The final project will require you to complete an additional critical element (I.C)
.
Rubric
Guidelines for Submission:
In addition to your flowchart or pseudocode, be sure to include an analysis of an input/output activity
addressing critical elements A.
and B. above using an annotated text file
of code
displaying
Python best practices
3.11 Program: Painting a wall (Python 3)(1) Prompt the user to input a wall's height and width. Calculate and output the wall's area. (Submit for 2 points).
Enter wall height (feet): 12Enter wall width (feet): 15Wall area: 180.0 square feet(2) Extend to also calculate and output the amount of paint in gallons needed to paint the wall. Assume a gallon of paint covers 350 square feet. Store this value in a variable. (Submit for 2 points, so 4 points total).
Enter wall height (feet): 12Enter wall width (feet): 15Wall area: 180.0 square feetPaint needed: 0.5142857142857142 gallons(3) Extend to also calculate and output the number of 1 gallon cans needed to paint the wall. Hint: Use a math function to round up to the nearest gallon. (Submit for 2 points, so 6 points total).
Enter wall height (feet): 12Enter wall width (feet): 15Wall area: 180.0 square feetPaint needed: 0.5142857142857142 gallonsCans needed: 1 can(s)(4) Extend by prompting the user for a color they want to paint the walls. Calculate and output the total cost of the paint cans depending on which color is chosen. Hint: Use a dictionary to associate each paint color with its respective cost. Red paint costs $35 per gallon can, blue paint costs $25 per gallon can, and green paint costs $23 per gallon can. (Submit for 2 points, so 8 points total).
Enter