문제풀이/기타
SAS BASE Q81. ods html
나루다루
2018. 11. 2. 23:52
728x90
QUESTION NO: 81
The following SAS program is submitted:
<_insert_ods_code_>
proc means data=SASUSER.SHOES;
where Product in ('Sandal' , 'Slipper' , 'Boot');
run;
<_insert_ods_code_>
Which ODS statements inserted, respectively, in the two location above creates a report stored in an html file?
A. ods html open='sales.html'; ods html close;
B. ods file='sales.html' / html; ods file close;
C. ods html file='sales.html'; ods html close;
D. ods file html='sales.html'; ods file close;
Answer: C
# 문제 풀이
- ods html file = ' ' ; ods html close;
- html 형식으로 파일을 만들어 내보냄
728x90
반응형