The SAS data set EMPLOYEE_INFO is listed below:IDNumber Expenses -2542 100.003612 133.152198 234.342198 111.12The following SAS program is submitted:proc sort data = employee_info;run;Which one of the following BY statements completes the program and sorts the data sequentially by descending expense values within each descendingIDNUMBER value?
The following SAS program is submitted:libname company 'SAS-data-library';proc sort data = company.payroll;by EmployeeIDNumber;run;Write access has been granted to the COMPANY library.Which one of the following represents how the observations are sorted?
The SAS data set WORK.AWARDS is listed below:fname pointsAmy 2 -Amy 1 -Gerard 3 -Wang 3 -Wang 1 -Wang 2 -The following SAS program is submitted:proc sort data = work.awards;by descending fname points;run;Which one of the following represents how the observations are sorted?
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?
Which one of the following statements is true regarding the name of a SAS array?
The following SAS program is submitted:data stats;set revenue;array weekly{5} mon tue wed thu fri;total = weekly{i} * .25;output;end;run;Which one of the following DO statements completes the program and processes the elements of the WEEKLY array?