SAS_Institute
A00-201 · Question #36
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 correct answer is B. (space). See the full explanation below for the reasoning.
Question
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?
Options
- A: (colon)
- B(space)
- C, (comma)
- D; (semicolon)
How the community answered
(26 responses)- A19% (5)
- B69% (18)
- C4% (1)
- D8% (2)
Community Discussion
No community discussion yet for this question.