Question 79:

 The SASDATA.BANKS data set has five observations when the following SAS program is submitted:

 libname sasdata 'SAS-data-library';

 data allobs;

 set sasdata.banks;

 capital=0;

 do year = 2000 to 2020 by 5;

 capital + ((capital+2000) * rate);

 output;

 end;

 run;

 How many observations will the ALLOBS data set contain?

  1. 5
  2. Get all Questions and Answer from here
  3. You need to have paid subscription to access all questions
  4. Thanks for considering Python Certification Material

 Correct Answer : 4

 Exp: year=2000 to 2020 by 5

 (includes the 2020 also, so 5 iterations)

You can access to full explanation to question and answer from this page.