YOUR TASK: Convert the following code design into Python code. Don't change any of the variable names or the structure of the program in any way. Design: Display "Welcome. This program computes the distance travelled and final speed of an object, given its initial speed and acceleration, and the time travelled." Store a value for initial speed into variable 'uspeed' Store a value for acceleration into variable 'acc • Store a value for travelling time into variable 'time Compute the distance travelled and store the result in variable 'sdist' as follows: sdistuspeed time + acc time² Compute the final speed and store the result in variable 'vspeed' as follows: vspeed=√(uspeed² +2·acc-sdist) Display "The distance travelled is as follows:" Display sdist • Display "The final speed is as follows:" • Display vspeed . .

Systems Architecture
7th Edition
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Stephen D. Burd
Chapter10: Application Development
Section: Chapter Questions
Problem 6RQ
icon
Related questions
Question

 

 

Converting a Program Design to Python Code [10 marks]
This exercise should be done in the "Exercise 1" file provided to you. In class, we've been drawing
up designs in English for programs we want to write. We've then used these code designs to create
programs in Python code. For now, I've given you a code design and your job is to convert the
design into Python code.
Below I'll first provide an example for you. On the left is a code design and on the right is the
associated Python code. You need not type it in if you don't want to; it's just an example of a code
design and its corresponding code.
Design:
Create a variable 'num1' and store the
number 4 in it.
Ask the user for a number; store this in
variable 'num2'
Add variables num1 and num2 and
store the result in variable 'total'
Display "The total is:"
Display variable 'total'
Code:
num1 = 4
num2= int(input("Enter a number:"))
total num1 + num2
print("The total is:")
print(total)
YOUR TASK: Convert the following code design into Python code. Don't change any of the
variable names or the structure of the program in any way.
Design:
Display "Welcome. This program computes the distance travelled and final speed of
an object, given its initial speed and acceleration, and the time travelled."
• Store a value for initial speed into variable 'uspeed'
Store a value for acceleration into variable 'acc'
Store a value for travelling time into variable 'time'
• Compute the distance travelled and store the result in variable 'sdist' as follows:
sdistuspeed. time + 7/213
acc-time²
• Compute the final speed and store the result in variable 'vspeed' as follows:
vspeed=√√(uspeed² +2.acc-sdist)
Display "The distance travelled is as follows:"
Display sdist.
Display "The final speed is as follows:"
Display vspeed
Transcribed Image Text:Converting a Program Design to Python Code [10 marks] This exercise should be done in the "Exercise 1" file provided to you. In class, we've been drawing up designs in English for programs we want to write. We've then used these code designs to create programs in Python code. For now, I've given you a code design and your job is to convert the design into Python code. Below I'll first provide an example for you. On the left is a code design and on the right is the associated Python code. You need not type it in if you don't want to; it's just an example of a code design and its corresponding code. Design: Create a variable 'num1' and store the number 4 in it. Ask the user for a number; store this in variable 'num2' Add variables num1 and num2 and store the result in variable 'total' Display "The total is:" Display variable 'total' Code: num1 = 4 num2= int(input("Enter a number:")) total num1 + num2 print("The total is:") print(total) YOUR TASK: Convert the following code design into Python code. Don't change any of the variable names or the structure of the program in any way. Design: Display "Welcome. This program computes the distance travelled and final speed of an object, given its initial speed and acceleration, and the time travelled." • Store a value for initial speed into variable 'uspeed' Store a value for acceleration into variable 'acc' Store a value for travelling time into variable 'time' • Compute the distance travelled and store the result in variable 'sdist' as follows: sdistuspeed. time + 7/213 acc-time² • Compute the final speed and store the result in variable 'vspeed' as follows: vspeed=√√(uspeed² +2.acc-sdist) Display "The distance travelled is as follows:" Display sdist. Display "The final speed is as follows:" Display vspeed
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Concept of Parenthesis
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning