Question 73: The following SAS program is submitted:

 proc means data = sasuser.shoes;

 where product in ('Sandal' , 'Slipper' , 'Boot');

 run;

 Which one of the following ODS statements completes the program and sends the report to an HTML file?

  1. ods html = 'sales.html';
  2. Get all Questions and Answer from here
  3. You need to have paid subscription to access all questions
  4. Thanks for considering Python Certification Material

 Correct Answer : 4

 Exp: Sending output to a .html file

 Just as it can generate a .pdf file, the Output Delivery System (ods) can generate .html files for SAS output. Again, we run a regression model separately for each of the four race

 categories in our data. Before running our regression, we open a .html file to which output is written. When we are done, we close the .html file.

You can access to full explanation to question and answer from this page.