Question 3:
Which one of the following SAS DATA steps saves the temporary data set named HADOOPDATA as a permanent data set?
- . libname sasdata 'SAS-data-library';
data sasdata.hadoopdata;
copy hadoopdata;
run;
- 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 : COPY statement exists in SAS. However, it cannot be used inside a Data step so A is not a correct answer.
COPY statement cannot be used in datastep. It is used in a proc step as follow:
proc copy in=work out=sasuser;
select datasetname;
You can access to full explanation to question and answer from this page.