Answer:
The solution code is written in Python:
Explanation:
Firstly, prompt user to input initial population size, growth rate and number of years and assign them to their respective variables (Line 1 - 3).
Next, create a for-loop to iterate through the number from 1 till the given number of year (Line 5)
Within the for-loop, apply the formula
initial population + (initial population * growth rate )
to estimate the population size after n year (Line 6) and display the output (Line 7).