Question 85:

 The contents of the SAS data set PERM.JAN_SALES are listed below:

 VARIABLE NAME TYPE

 idnum character variable

 sales_date numeric date value

 A comma delimited raw data file needs to be created from the PERM.JAN_SALES data set. The SALES_DATE values need to be in

 a MMDDYY10 form.

 Which one of the following SAS DATA steps correctly creates this raw data file?

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

 data _null_;

 set perm.jan_sales;

 file 'file-specification' dsd = ',';

 put idnum sales_date : mmddyy10.;

 run;

  1. Get all Questions and Answer from here
  2. You need to have paid subscription to access all questions
  3. Thanks for considering Python Certification Material

 Correct Answer : 2

 Exp: First, in put statement, $ sign for character variable, Idnum is not needed.

 The correct answer is: 2

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