1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Rzqust [24]
2 years ago
6

The following equation estimates the average calories burned for a person when exercising, which is based on a scientific journa

l article (source): calories = ( (age x 0. 2757) + (weight x 0. 03295) + (heart rate x 1. 0781) — 75. 4991 ) x time / 8. 368 write a program using inputs age (years), weight (pounds), heart rate (beats per minute), and time (minutes), respectively. Output the average calories burned for a person. Output each floating-point value with two digits after the decimal point, which can be achieved as follows: print('calories: {:. 2f} calories'. Format(calories)).
SAT
1 answer:
Misha Larkins [42]2 years ago
4 0

The program is an illustration of a sequential structure

<h3>What are sequential control structures?</h3>

Sequential control structures are programs that do not require loops and conditional statements

<h3>The actual program</h3>

The program in Python where comments are used to explain each line, is as follows:

#This gets input for age

age = int(input("Age: "))

#This gets input for weight

weight = (input("Weight: "))

#This gets input for the heart rate

heartRate = float(input("Heart Rate: "))

#This gets input for the time

time = int(input("Time: "))

#This calculates the calories burnt

calories = ((age * 0.2757) + (weight * 0.03295) + (heartRate * 1.0781) - 75.4991 ) * time / 8.368

#This prints the calories burnt

print('calories: {:. 2f} calories'. Format(calories))

Read more about similar programs at:

brainly.com/question/24833629

You might be interested in
Montesquieu believed that government power should be divided between different branches, much like the executive, legislative, a
QveST [7]

Answer: A) it provides each brand with its own powers and responsibilities

Explanation: got it right on edge :)

7 0
3 years ago
Julia, ernesto y pablo están esperándolo. (julia, ernesto y pablo are waiting for it (the bus).)
Eddi Din [679]

Julia, Ernesto y Pablo are waiting for it (the bus).) is a correct statement.

<h3>What is the statement about?</h3>

The statement Julia, Ernesto y Pablo están esperándolo is a response to a previously given question which is Julia, Ernesto and Pablo are waiting for him in English.

Julia, Ernesto y Pablo are waiting for it the bus is also known to be the response to the first question and as such the tenses are correct.

Learn more about Spanish sentence from

brainly.com/question/7150507

#SPJ1

6 0
2 years ago
Which observation is inconsistent with the ideal gas law.
prisoha [69]

The observation that is inconsistent with the ideal gas equation is; "When temperature is held constant and volume increases, the pressure increases."

Boyle's law describes the relationship between the pressure and volume of ideal gas. Boyle's law states that, the volume of a given mass of gas is inversely proportional to its pressure at constant temperature.

Hence, the statement that "When temperature is held constant and volume increases, the pressure increases." does not agree with Boyle's law therefore it is inconsistent with the ideal gas law.

8 0
2 years ago
Which of the following factors may impact a persons bac.
fredd [130]

Explanation:

Which factors? I am pretty sure we need a picture for this?

3 0
2 years ago
A group of campers walked at a speed of 4. 5 mph from their campsite to a rest area. Their return trip to the campsite took 15 m
tia_tia [17]

The distance between the campsite and the rest area is 9 miles.

The given parameters:

  • <em>Initial speed of the campers, u = 4.5 mph</em>
  • <em>Final speed of the campers, v = 4 mph</em>

<em />

Let the time of motion from the campsite to rest area = t (hours)

Time for return trip = t hours +  15 mins

                               = (t + 0.25) hours

Let the distance between the campsite and rest area = d

d = 4.5t

d = 4(t + 0.25)

4.5t = 4(t + 0.25)

4.5t = 4t + 1

4.5t - 4t = 1

0.5t = 1

t = 2 hours

The distance between the campsite and the rest area is calculated as follows;

d = 4.5t

d = 4.5 x 2

d = 9 miles

Thus, the distance between the campsite and the rest area is 9 miles.

Learn more about distance and speed here: brainly.com/question/2854969

5 0
2 years ago
Other questions:
  • POV : ur missing assignments so u looked up an answer and came here check!! ;c
    5·2 answers
  • Wood trim cost $0.28 per foot of length. How much does a trim cost that is 6 feet?
    6·1 answer
  • If the angles in the incidence is 30° what is the value of the angle of reflection
    15·2 answers
  • Which character in hamilton are you?<br> I am Angelica
    9·1 answer
  • What is one characteristic that indicates the first passage is fictional while the second is non-fictional?
    9·1 answer
  • Where does this case go next? the federal court of appeals the US Supreme Court the state supreme court the state district court
    5·1 answer
  • Ruben can paint 6 1/2.
    9·1 answer
  • A friend claims that it will rain today with probability 30% and tomorrow with probability four times as great as today. Which o
    7·1 answer
  • What is the solubility of mg(oh)₂ at a ph of 12.70? (ksp mg(oh)₂ is 1.6 × 10⁻¹³)
    6·1 answer
  • A water tap fills a tank within 4 hours, at the bottom of the tank
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!