By admin | September 28, 2009

SAS Certified Base Programmer 123 Questions (86)

The following SAS program is submitted:

data work.clients;
    calls = 6;
    do while (calls le 6);
        calls + 1;
    end;
run;

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

A. 4
B. 5
C. 6
D. 7

One comment | Add One

  1. admin - 09/28/2009 at 9:54 am

    D

Leave a Comment

Leave a Reply

Your email address will not be published.