Question 5:
You have submitted the following SAS SORT procedure step generates an output data set:
proc sort data = sasuser.employer out = employee;
by style;
run;
In which library is the output data set stored?
- WORK
- 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 : 1
Exp : If libname name is not specified, then the data will be stored in WORK.
The Work library is the temporary library that is automatically defined by SAS at the beginning of each SAS session or job. The Work library stores temporary SAS files that you create, as well as files created internally by SAS. To access files in the Work library, specify a one-level name for the file.
You can access to full explanation to question and answer from this page.