Question 8: You have been given below SAS program

 data course100 ;

 Fee=5000;

 FEE_HIKE=0.1;

 do month=1 to 15 by 3 ;                              

 INCREASE+(FEE+INCREASE)*FEE_HIKE;

 iteration+1;

 output;

 end;

 put _all_;

 run;

 proc print data=course100; run;

 How many observation will be in course100 dataset

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

 Correct Answer : 3 Exp : As you can see given do statement is started with 1 and incremented by value 3. It should not reach beyond 15.

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