Question 9 :

 name   age

 Janice  10

 Henri   11

 Michele 11

 Susan   12

 The following SAS program is submitted using the Sasdata.Group data set as input:

 libname sasdata 'SAS-data-library';

 data group;

 set sasdata.group;

 file 'file-specification';

 put name $15. @5 age 2.;

 run;

 Which one of the following describes the output created?

  1. a raw data file only
  2. Get all Questions and Answer from here
  3. You need to have paid subscription to access all questions
  4. Thanks for considering SAS Certification Material

 Correct Answer : 3

 Exp : The DATA step creates a temporary data set named Group and reads data from the permanent SAS data set named Sasdata.Group into it.

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