subject

Population growth

Assign finalPopulation with the population size given an initial population, population growth rate, and number of years. The population growth is calculated by:

Final population = Initial population * (1 + Rate of growth)^Number of years

Your Solution

function finalPopulation = CalculatePopulation(initialPopulati on, growthRate, numberYears)

% Assign finalPopulation with the population size given an
% initial population, population growth rate, and number of years
finalPopulation = 0;

end

Run Your Solution

Code to call your function when you click Run

CalculatePopulation(10000, 0.06, 20)

Check if CalculatePopulation(10000, 0.06, 20) returns 32071.3547

Check if CalculatePopulation(10000, 0.40, 10) returns 289254.6549

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 22:50
Explain why it is reasonable to assume that receiving 3 duplicate acks in tcp is an indication that the network is not currently congested.
Answers: 1
question
Computers and Technology, 23.06.2019 14:30
Select the correct answer. what does it indicate when a website displays https instead of http? a. the website is secure. b. there is no secure sockets layer. c. the secure sockets layer is hidden. d. the website is not secure.
Answers: 1
question
Computers and Technology, 23.06.2019 22:30
You draw two cards from a standard deck of 52 cards, but before you draw the second card, you put the first one back and reshuffle the deck. (a) are the outcomes on the two cards independent? why?
Answers: 3
question
Computers and Technology, 24.06.2019 17:40
Pseudocode pld #6, pg. 117 start// declarations// number numbertoguess// number myguess; numbertoguess = 92// while myguess ! = numbertoguess// output " guess an integer number between 1 and 100"// input myguess// if (myguess == numbertoguess)// output "you guessed the correct number"// else// output "the number you guessed was incorrect. try again! "// end if// end while// output " for playing the guessing game. have a great day! "// stop
Answers: 3
You know the right answer?
Population growth

Assign finalPopulation with the population size given an initial popul...
Questions
question
Social Studies, 27.09.2019 22:00
question
Mathematics, 27.09.2019 22:00
Questions on the website: 13722360