Question 12:

 Select the DO WHILE statement that would generate the same result as the program below.

 data work.hadoopdata; hadoopprice=100000; do until(hadoopprice gt 500000); Year+1; hadoopprice+(hadoopprice*.10); end; run;

  1. do while(hadoopprice ge 500000);
  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 : Because the DO WHILE loop is evaluated at the top of the loop, you specify the condition that must exist in order to execute the enclosed statements.

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