Exam A00-211 All QuestionsBrowse all questions from this exam
Question 53

Population is currently at 34,278,400 for country A and is expected to rise at a rate of 2%.

Which DO LOOP will correctly calculate growth rate over the next 10 years beginning in 2012 as shown in the graphic below?

    Correct Answer: A

    The correct DO LOOP for calculating the population growth rate over the next 10 years, given a starting population of 34,278,400 and a growth rate of 2% per year, is one that iterates through each year from 2012 to 2021 inclusive. The loop needs to update the population value each year by multiplying it by 1.02 (which represents a 2% increase). Additionally, the population value must be saved (output) at each step. Option A fulfills these requirements and correctly executes the population growth calculation.

Discussion
ExamHWOption: A

A is correct