Answer:
the difference is one is online and one is not
Explanation:
A file is usually what you find online. And a folder is what you put papers into.
Answer:
It's your wish become other professions like doctor, engineer are also good. But in this profession you can make apps, websites and can do hacking. Which is are cool things to do. But every profession is best at it's profession.
Explanation:
If you like my answer than please mark me brainliest
<span>.jumbotron p
{
color: #fff;
font-size: 20px;
}</span>
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)