By admin | August 9, 2009

SAS Certified Base Programmer 50 Questions (36)

The SAS data set Employee_info is listed below.

employee bonus
2542      100.00
3612      133.15
2198      234.34
2198      111.12

The following SAS program is submitted:

proc sort data=employee_info;
    <insert BY statement here>
run;

Which one of the following BY statements completes the program and sorts the data in sequential order by descending bonus values within ascending employee values?

a. by descending bonus employee;
b. by employee bonus descending;
c. by employee descending bonus;
d. by descending employee bonus;

One comment | Add One

  1. admin - 08/9/2009 at 8:30 pm

    C

Leave a Comment

Leave a Reply

Your email address will not be published.