By admin | August 21, 2009

SAS Certified Adv Programmer 50 Questions (45)

The following SAS program is submitted:

data one;
    do pt=1 to 14 by 2;
        set temp point=pt
                 nobs=totobs;
        output;
    end;
    stop;
run;

The SAS data set Temp has 2,500,000 observations. Which one of the following represents the observations included in the data set One?

a. the first 14 observations from Temp
b. all 2,500,000 observations from Temp
c. a random sample of the observations from Temp
d. a systematic sample of the observations from Temp

2 comments | Add One

  1. admin - 08/21/2009 at 1:13 pm

    D

  2. Consty - 02/13/2013 at 12:17 pm

    D: a systematic sample is drawn from Temp. a sample of 7 observations

Leave a Comment

Leave a Reply

Your email address will not be published.