SAS_Institute
A00-280 · Question #50
This question will ask you to provide lines of missing code. <insert code here> proc print data=WORK.AE; run; <insert code here> Which ODS statements, inserted respectively in the two locations…
The correct answer is C. ods pdf file='AE.pdf'; ods pdf close. See the full explanation below for the reasoning.
Question
This question will ask you to provide lines of missing code.
<insert code here>
proc print data=WORK.AE;
run;
<insert code here>
Which ODS statements, inserted respectively in the two locations indicated above, create a report stored in a PDF file?
Options
- Aods pdf open='AE.pdf'; ods pdf close;
- Bods file open='AE.pdf' type=pdf; ods file close;
- Cods pdf file='AE.pdf'; ods pdf close;
- Dods pdf open='AE.pdf'; ods file close;
How the community answered
(19 responses)- A11% (2)
- B5% (1)
- C74% (14)
- D11% (2)
Community Discussion
No community discussion yet for this question.