Question 5 :

 The following SAS program is submitted:

 data work.pieces;

 do while (n lt 6);

 n + 1;

 end;

 run;

 Which one of the following is the value of the variable N in the output data set?

  1. 4
  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

 Ans : 3

 Exp : DO WHILE

 The while test is evaluated at the top of the loop.

 DO UNTIL

 The until test is evaluated at the bottom of the loop.

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