The SAS data set Employee_info is listed below.
e mp l oye e 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;
Correct answer: c