Question 4: You have submitted the SAS DATA step as below:

 libname temp 'SAS-data-library';

 data temp.employee;

 set sasuser.employer;

 totalsal = price * 1.04;

 run;

 Which one of the following statements is true regarding the program above?

  1. The program is reading from a temporary data set and writing to a temporary data set.
  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

 Correct Answer : 4

 Exp : reading from a permanent data set temp.employee

 and writing to a permanent data set

 sasuser.employer

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