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
dexar [7]
2 years ago
6

A local biologist needs a program to predict population growth. the inputs would be: the initial number of organisms, as an int

the rate of growth (a real number greater than 1), as a float the number of hours it takes to achieve this rate, as an int a number of hours during which the population grows, as an int
Biology
1 answer:
Nitella [24]2 years ago
7 0

"A local biologist needs a program to predict population growth. the inputs would be..." The resultant code is

tp=sp

hours = 1

while (hours < t):

tp *= g

hours += r

print("The total population is " + str(int(tp)))

# the call function

<h3>What is a program?</h3>

Generally, a program is simply defined as programming written into a computer or other equipment in order to do a certain task

In conclusion, to write a program that takes these inputs and displays a prediction of the total population must consider  the parameters and the code platform (python), Hence

# on python interface required library is explored

import math

# describe the functions needed

def prediction():

sp = int(input("Enter the initial number of organism: "))

g = float(input("Enter the rate of growth [a real number > 0]: "))

while(g<1):

print ("Invalid.. growth rate.")

g = float(input("Enter the rate of growth [a real number > 0]: "))

r = int(input("Enter the number of hours to achieve the rate of growth: "))

t = int(input("Enter the total hours of growth: "))

tp=sp

hours = 1

while (hours < t):

# the calculation for tp

tp *= g

hours += r

print("The total population is " + str(int(tp)))

#call the created function

CQ

A local biologist needs a program to predict population growth. The inputs would be: 1. The initial number of organisms 2. The rate of growth (a real number greater than 1) 3. The number of hours it takes to achieve this rate 4. A number of hours during which the population grows.                           For example, one might start with a population of 500 organisms, a growth rate of 2, and a growth period to achieve this rate of 6 hours. Assuming that none of the organisms die, this would imply that this population would double in size every 6 hours. Thus, after allowing 6 hours for growth, we would have 1000 organisms, and after 12 hours we would have 2000 organisms. Write a program that takes these inputs and displays a prediction of the total population.  

Read more about the program

brainly.com/question/14368396

#SPJ1

You might be interested in
How is energy released from chemical bonds
vazorg [7]

Answer:  Chemical energy is energy stored in the structure of molecules within the bonds between atoms. Energy can be added or released from a molecule by changing the arrangement of electrons (rearranging chemical bonds).

Explanation:

3 0
3 years ago
Read 2 more answers
Help with this question, thanks.
vekshin1

Answer:

It should be D

Explanation: Hope this helps

8 0
3 years ago
True or false? as a general rule, females experience more effects from a given dose of alcohol than do males.
Gennadij [26K]
True as far as I know. 
4 0
3 years ago
Starch is a _____.<br> A) monosaccharide<br> B) disaccharide<br> C) hormone<br> D) polysaccharide
muminat
<span>it is a polysaccharidee </span>
4 0
3 years ago
Read 2 more answers
The following image is Flagellates are microbes that have a rod-shaped flagellum that helps with their locomotion. Certain flage
olganol [36]
The correct answer is B !! Both are interdependent thus forming a mutualistic association !!

As both can not live without each other thus making obligate !!

so They share obligate mutual association !! Go with B !!
5 0
3 years ago
Read 2 more answers
Other questions:
  • Blood stasis, changes in the vessel wall, and certain medications affect the: Select one: a. systolic blood pressure exclusively
    7·1 answer
  • Horsing around in the lab is always ok when no experimenting is being done never allowed fine when you are alone ok because it i
    9·2 answers
  • Which of the following is not an accurate description of what science is
    6·1 answer
  • What do lysosomes produce that are essential to their function?
    15·2 answers
  • why locations near the atlantic ocean could have a warmer air temperature than locations inland at nighttime
    10·2 answers
  • Sustainability and explain how you relate it toward a sustainable future.
    9·1 answer
  • Name the two types of meiosis that are carried on by humans?
    7·1 answer
  • 50 points+brainiest<br> HELP QUICK
    12·1 answer
  • For each of the following, circle the word that does not belong belong with the rest and then in ONE complete sentence, explain
    11·1 answer
  • Please put an explanation will give 25 points and brainliest
    14·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!