By admin | September 14, 2009

SAS Certified Base Programmer 123 Questions (48)

The observations in the SAS data set WORK.TEST are ordered by the values of the variable SALARY.

The following SAS program is submitted:

proc sort data = work.test out = work.testsorted;
    by name;
run;

Which one of the following is the result of the SAS program?

A. The data set WORK.TEST is stored in ascending order by values of the NAME variable.
B. The data set WORK.TEST is stored in descending order by values of the NAME variable.
C. The data set WORK.TESTSORTED is stored in ascending order by values of the NAME variable.
D. The data set WORK.TESTSORTED is stored in descending order by values of the NAME variable.

One comment | Add One

  1. admin - 09/14/2009 at 1:19 pm

    C

Leave a Comment

Leave a Reply

Your email address will not be published.