Question : 2
The following SAS program is submitted:
ods html file='newfile.html';proc print data=sasuser.houses;run;proc means data=sasuser.houses;run;proc freq data=sasuser.shoes;run;ods html close;proc print data=sasuser.shoes;run;
How many HTML files are created?
- 1
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- Thanks for considering SAS Certification Material
Correct Answer 1 :
Exp : By default, one HTML file is created for each FILE= option or BODY= option in the ODS HTML statement. The ODS HTML CLOSE statement closes the open HTML file and ends the output
capture. The Newfile.html file contains the output from the PRINT, MEANS, and FREQ procedures.
You can access to full explanation to question and answer from this page.