Question 82:      The following SAS program is submitted:

 data _null_;

 set old (keep = prod sales1 sales2);

 file 'file-specification';

 put sales1 sales2;

 run;

 Which one of the following default delimiters separates the fields in the raw data file created?

  1. : (colon)
  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 : 2

 Exp: because no delimiter is specified at the end of the file stmt.so the default delimitter space is used.if you want comma as a delimitter, use the stmt

 file 'file specification' dlm=',';

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