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
Describe the sounds, smells, and sights you associate with spring. Write a paragraph with at least 4 sentences.
spin [16.1K]
Smell: Spring brings soothing scents like lilacs, apple blossoms, hyacinth and daffodils. Sweet aromas turn a stroll through the garden into a delicacy for the nose Springtime means that the trees and flowers come back to life again. After a dead winter, this is a time when we get to see the beautiful flowers blossom again Spring also brings new sounds, like bird songs at dawn, frog croaks by ponds, and dripping icicles. When the weather warms, the sounds you hear in national parks reflect this seasonal change (use this but not in this order fix it up a bit)
7 0
3 years ago
Quizlet renal autoregulation consists of myogenic mechanism and tubuloglomerular feedback
weqwewe [10]

The two different systems which are responsible for renal autoregulation are:

  1. Myogenic mechanism
  2. Tubuloglomerular feedback mechanism.

<h3>What is renal autoregulation?</h3>

Renal autoregulation mechanism is a kind of myogenic autoregulation which maintains a constant renal blood flow at varying arterial pressure.

So therefore, The two different systems which are responsible for renal autoregulation are: Myogenic mechanism

and Tubuloglomerular feedback mechanism.

Complete question:

What are two systems which are responsible for renal autoregulation?

Learn more about mechanisms in the kidneys:

brainly.com/question/14543659

#SPJ1

5 0
2 years ago
In "a march in the ranks hard-prest, and the road unknown," readers can infer the speaker is shocked by the scene he encounters
Andreas93 [3]

There are different ways to support an inference. The lines from the poem that support this inference is “These I resume as I chant, I see again the forms, I smell the odor,”.

  • To support the inference is simply known as  way or act through which one can draw or reach a specific conclusion about something from different facts gathered.

A March in the Ranks Hard-Prest, and the Road Unknown  is known to be a poem that was written by Walt Whitman.

See full question below

In “A March in the Ranks Hard-Prest, and the Road Unknown,” readers can infer the scene inside the church will leave a lasting impression on the speaker.

Which excerpt from the poem supports this inference?

“The glisten of the little steel instruments catching the glint of the torches,”

“By these, crowds, groups of forms vaguely I see on the floor, some in the pews laid down,”

“Our army foil’d with loss severe, and the sullen remnant retreating,”

“These I resume as I chant, I see again the forms, I smell the odor,”

Learn more about a march in the ranks hard-prest from

brainly.com/question/25211459

7 0
3 years ago
A book has a mass of 400g the surface of the book in contact
Brut [27]

Answer:

The pressure exerted on the table due to the book is 200 N/m².

Explanation:

The pressure exerted on the table due to the book is 200 N/m².

The given parameters;

mass of the book, m = 400 g = 0.4 kg

dimension of the table,  = 0.10m x 0.20 m.

gravitational field strength g =  10 N/kg.

The area of the table is calculated as follows;

A = 0.1 x 0.2 = 0.02 m²

The pressure exerted on the table due to the book is calculated as follows; where;

F is the force of the book due to its weight

Thus, the pressure exerted on the table due to the book is 200 N/m².

8 0
2 years ago
good morning everyone! i love to make friends and talk, please subscribe to Midnight Runner Wolfie! the support for you guys wou
blsea [12.9K]

Answer:

the correct answer is okay

Explanation:

thx wolfie :D

6 0
2 years ago
Read 2 more answers
Other questions:
  • What is the weather like in the northern latitudes?
    11·2 answers
  • How does the serious tone of a magical realist story most affect the reader ?
    11·1 answer
  • I'm taking my act soon and I was what I should study on and ways to get through the test as easy as possible
    10·1 answer
  • Can someone help me with this? ASAP?
    11·1 answer
  • Would you recommend dancing as an activity done at home
    9·1 answer
  • The diagram shows changes/movement that occur in the water cycle. Which of these shows one possible and immediate result of prec
    15·1 answer
  • Is the statement true or false? queen victoria reigned for more than sixty years and promoted the "victorian" values of duty, ha
    10·1 answer
  • Ariel dropped a golf ball from her second story window. The ball starts from rest and hits the sidewalk 1. 5 s later with a velo
    15·1 answer
  • What is the ph of a solution made by mixing 30.00 ml of 0.10 m acetic acid with 50.00 ml of 0.100 m koh? assume that the volumes
    14·1 answer
  • The current Texas Constitution has been amended fewer than 300 times. True False
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!