SAS_Institute
A00-280 · Question #55
Which program will report all created output objects in the log?
The correct answer is C. ods trace=log; proc ttest data=WORK.DATA1; class TREAT; var RESULTS; run. See the full explanation below for the reasoning.
Question
Which program will report all created output objects in the log?
Options
- Aproc ttest data=WORK.DATA1 ods=trace; class TREAT; var RESULTS; run;
- Bods trace on; proc ttest data=WORK.DATA1; class TREAT; var RESULTS; run;
- Cods trace=log; proc ttest data=WORK.DATA1; class TREAT; var RESULTS; run;
- Dods trace log; proc ttest data=WORK.DATA1;
How the community answered
(45 responses)- A9% (4)
- B2% (1)
- C84% (38)
- D4% (2)
Community Discussion
No community discussion yet for this question.