Question 3. Assign boston_under_10 and manila_under_10 to the percentage of rides that are less than 10 minutes in their respective metropolitan areas. Use the height variables provided below in order to compute the percentages. Your solution should only use height variables, numbers, and mathematical operations. You should not access the tables boston and manila in any way.

Respuesta :

Variables in programming are used to store values

The program statements are:

  • boston_under_10 = height_under_10/total
  • manila_under_10 = height_under_10/total

How to assign values to a variable

The values of variables can be changed at any time during program execution.

The syntax to assign values to a variable is:

variable = value

The variables are given as:

boston_under_10 and manila_under_10

So, the program statements are:

boston_under_10 = height_under_10/total  and manila_under_10 = height_under_10/total

Read more about variables at:

https://brainly.com/question/16397886

ACCESS MORE