SAS_Institute
A00-211 · Question #198
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
(35 responses)- A3% (1)
- B74% (26)
- C14% (5)
- D9% (3)
Community Discussion
No community discussion yet for this question.