Q: 8
The SAS data set named WORK.SALARY contains 10 observations for each department, and is
currently ordered byDepartment
The following SAS program is submitted:
data WORK.TOTAL;
set WORK.SALARY(keep=Department MonthlyWageRate);
by Department;
if First.Department=1 then Payroll=0;
Payroll+(MonthlyWageRate*12);
if Last.Department=1; run;
Which statement is true? Select one:
Options
Discussion
No comments yet. Be the first to comment.
Be respectful. No spam.