Question 64 : The following SAS program is submitted:

 data work.total;

 set work.salary(keep = department wagerate);

 by department;

 if first.department

 then payroll = 0;

 payroll + wagerate;

 if last.department

 run;

 The SAS data set WORK.SALARY, currently ordered by DEPARTMENT, contains 100 observations for

 each of 5 departments.

 What is the result?

  1. The WORK.TOTAL data set contains 5 observations.
  2. Get all Questions and Answer from here
  3. You need to have paid subscription to access all questions
  4. Thanks for considering SAS Certification Material
  5.  Correct Answer 1 :

 Exp : 

You can access to full explanation to question and answer from this page.