By admin | December 9, 2009

SAS Certified Adv Programmer 130 Questions (27)

The SAS data set ONE has a variable X on which an index has been created. The data sets ONE and THREE are sorted by X. Which one of the following SAS programs uses the index to select observations from the data set ONE?

A.

data two;
    set three;
    set one key = X;
run;

B.

data two;
    set three key = X; 
    set one;
run;

C.

data two;
    set one;
    set three key = X;
run;

D.

data two;
    set three;
    set one (key = X);
run; 

One comment | Add One

  1. admin - 12/9/2009 at 10:21 am

    A

Leave a Comment

Leave a Reply

Your email address will not be published.