SAS_Institute
A00-201 · Question #37
The following SAS program is submitted: data _null_; set old; put sales1 sales2; run; Where is the output written?
The correct answer is A. the SAS log. See the full explanation below for the reasoning.
Question
The following SAS program is submitted:
data null;
set old;
put sales1 sales2;
run;
Where is the output written?
Options
- Athe SAS log
- Bthe raw data file that was opened last
- Cthe SAS output window or an output file
- Dthe data set mentioned in the DATA statement
How the community answered
(54 responses)- A80% (43)
- B13% (7)
- C6% (3)
- D2% (1)
Community Discussion
No community discussion yet for this question.