The following SAS program is submitted:
proc means data = sasuser.shoes;
where product in ('Sandal' , 'Slipper' , 'Boot');
run;
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?
A. ods html = 'sales.html';
B. ods file = 'sales.html';
C. ods file html = 'sales.html';
D. ods html file = 'sales.html';
A. ods html = 'sales.html';
B. ods file = 'sales.html';
C. ods file html = 'sales.html';
D. ods html file = 'sales.html';
1 comment:
Answer: D
ods html file = 'sales.html';
Post a Comment