Question 83:

 The contents of the raw data file TEAM are listed below:

 --------10-------20-------30

 Janice 10

 Henri 11

 Michael 11

 Susan 12

 The following SAS program is submitted:

 data group;

 infile 'team';

 input name $15. age 2.;

 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 Python Certification Material

 Correct Answer : 3

 Exp: infile and input statements are used to read data from raw data file. File and put statements are used to write data to raw data file. In our example later is happening, so a

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