Question 3:

 Which one of the following SAS DATA steps saves the temporary data set named HADOOPDATA as a permanent data set?

 

  1. . libname sasdata 'SAS-data-library';

 data sasdata.hadoopdata;

 copy hadoopdata;

 run;

  1. Get all Questions and Answer from here
  2. You need to have paid subscription to access all questions
  3. 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.