Quiz title : Set - 001 - Part 08
Question 1 of 9
The SAS data set EMPLOYEE_INFO is listed below:;
IDNUMBER Expenses
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 sequentially by descending expense values within each descending IDNUMBER value?