Question: Python Programming Total 40 points Mass and Weight Sci entists measure an object's mass in kilograms and its weight in newtons. If you know the
Python Programming Total 40 points Mass and Weight Sci entists measure an object's mass in kilograms and its weight in newtons. If you know the amount of mass of an object in kilograms, you can calculate its weight in newtons with the following formula: weight = mass 9.8 Write a program that asks the user to enter an object's mass, then calculates its weight. If the object weighs more than 500 newtons, display a message indicating that it is too heavy If the object weighs less than 100 newzons, display a message indicating that it is too light Ocean Levels Assuming the ocean's level is currently rising at about 1.6 millimeters per year, create an application that displays the number of millimeters that the ocean will have risen each year for the next 25 years. Tuition Increase At one college, the tuition for a full-time student is $8,000 per semester. It has been anno that the tuition will increase by 3 percent each year for the next 5 years. Write a program with a loop that displays the projected semester tuition amount for the next 5 years. Falling Distance When an object is falling because of gravity, the following formula can be used to deter- mine the distance the object falls in a specific time period: The variables in the formula are as follows: d is the distance in meters, g is 9.8, and t is the amount of time, in seconds, that the object has been falling. Write a function named falling distance that accepts an object's falling time (in as an argument. The function should return the distance, in meters, that the object fallen during that time interval. Then from call the function to get the result the main0 function, prompt the user to enter the amount of time in seconds (), and
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
