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 . .

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education