Question 13: Which of the following condition will be replaced at XXXXX , so that TOTAL_INCOME become 100000 or number of years should not be more than

 10.

 data course100 (drop=index);

 do year=1 to 10 XXXXX

 TOTAL_INCOME+5000;

 TOTAL_INCOME+TOTAL_INCOME*.10;

 output;

 put _all_;

 end;

 run;

 proc print data=course100;

 run;

  1.          until(TOTAL_INCOME>100000);
  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 : 1 Exp : Until statement will stop executing as soon as condition become true. Hence, here requirement is either of the conditions

 should become true.

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