Answer:
Display as
Explanation:
Need the same question, but that's my guess, because display, means to show.
After a system is released and the user base grows, the demands on the development and support team will increase.
The development team can scale vertically by adding new people to the team.
True, hypertension is when your blood pressure is to high.
Please mark as brainliest
Answer:
Written in Python
import math
degreesF = float(input("Enter a temperature in degrees Fahrenheit: "))
degreesC = round(5 * (degreesF - 32)/9,1)
print(degreesC)
Explanation:
The following header allows you to use Math.Round() method in Python
import math
The following prompts the user for temperature in degrees Fahrenheit
degreesF = float(input("Enter a temperature in degrees Fahrenheit: "))
The following calculates the degree Celsius equivalent and also round it up
degreesC = round(5 * (degreesF - 32)/9,1)
The following prints the degree Celsius equivalent
print(degreesC)