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
6. How does kalatok produced sound?
FromTheMoon [43]

Answer:

hope it's helpful for you

7 0
3 years ago
What forces cause sedimentary rocks to be transformed into metamorphic rocks brainly
lakkis [162]

Answer:

i think they become metamorphic after a volcanic eruption

3 0
3 years ago
65g of nitric acid are produced in a reaction. 2. 5g of platinum are added to the reaction vessel at the start of the reaction t
boyakko [2]

Answer:

2. 5g of platinum

Explanation:

catalyst gets the reaction going faster

its not part of the reaction

brainly.com/question/16799211

3 0
2 years ago
S.D(X) = 6 and S.D(Y) = 8. If X and Yare independent random variables, then S.D(X-Y) is:
Mademuasel [1]

Answer:

14

Explanation:

For independent variables X and Y;

S.D(X - Y) is expanded as :

S.D(X) + S.D(Y)

If S.D(X) = 6 and S.D(Y) = 8 ; where, X and Y are independent ;

SD(X-Y) = SD(X) + SD(Y)

SD(X - Y) = 6 + 8

SD(X - Y) = 14

3 0
2 years ago
Sort the following statements based on whether demand is relatively elastic or relatively inelastic. There are four pairs of sta
ladessa [460]

The matching of the demand as relatively elastic or relatively inelastic can be done as;

  • Klaus' demand for orange juice (Relatively elastic)
  • Amanda's annual demand for coffee(Relatively elastic)
  • Jackson's demand for mystery novels(Relatively inelastic)
  • Hermy's demand for Minute Maid orange juice(Relatively inelastic)
  • Olivia's daily demand for Starbucks latte(Relatively inelastic)
  • Stephen spends a very little part of his income on soda(Relatively elastic)
  • Xavier's demand for his economics textbook(Relatively inelastic)

<h3>What is Elasticity of demand?</h3>

Elasticity of demand  can be regarded as the variation on the concept of demand.

It should be noted that elastic demand involves change in quantity demanded as a result of  change in price.

Learn more about Elasticity of demand

brainly.com/question/26576823

6 0
2 years ago
Other questions:
  • which type of media would be best for showing the order of significant events in a process? A. Map B. Chart C. Timeline D. Graph
    7·2 answers
  • Which of the following is a tip for the passage-based reading questions in the critical-reading section of the PSAT? A. When com
    13·1 answer
  • Alexis, age 4, is shown a matchbox filled with buttons. Alexis’s friend, Kinesha, joins the room, and Alexis smiles because she
    15·1 answer
  • Distance to Finish Line
    5·1 answer
  • Describe how vacation stress may negatively affect your family life
    10·1 answer
  • A construction company is building a new neighborhood hackerrank
    12·1 answer
  • What number is represented by point p? please type your answer as a decimal number.
    9·1 answer
  • In this excerpt from "dover beach" by matthew arnold, which two lines or sets of lines suggest that the speaker has undergone a
    12·1 answer
  • Gender is something that is accomplished through ongoing interactions. This process is referred to as: quizlet
    9·1 answer
  • Wellcare must receive notice of an event change or cancellation
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!