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?
- The program is reading from a temporary data set and writing to a temporary data set.
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- 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.