SAS Base, A00-211 Crambible
SAS 베이스 자격증
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;
66번 참고하세요.
결과물을 특정 포맷으로 보내고 싶을때 ODS(output delivery system)라는 명령어를 시작과 끝에 사용하면 됩니다. 문법이라서 외우시면 됩니다.
ods html file='sales.html'; - html이라는 파일 형태로 경로를 지정해줍니다.
ods html close; - ods html을 닫겠다라는 내용입니다.
참고로, 마지막에 close라고 종료하는것도 덤프에 있었죠.
Answer: C
'SAS > Base Programmer' 카테고리의 다른 글
[A00-211, Crambible] SAS Q83 - ods (0) | 2017.06.04 |
---|---|
[A00-211, Crambible] SAS Q82 - input (0) | 2017.06.03 |
[A00-211, Crambible] SAS Q80 - freq table (0) | 2017.06.01 |
[A00-211, Crambible] SAS Q79 - where, 문자형, 숫자형 (0) | 2017.06.01 |
[A00-211, Crambible] SAS Q78 - read raw file (0) | 2017.06.01 |