SAS Base, A00-211 Crambible
SAS 베이스 자격증
QUESTION NO: 66
The following SAS program is submitted:
<insert ODS statement here>
proc means data = sasuser.shoes;
where product in ('Sandal' , 'Slipper' , 'Boot');
run;
<insert ODS statement here>
Which ODS statements complete the program and send the report to an HTML file?
A. ods html = 'sales.html'; ods html close;
B. ods file = 'sales.html'; ods file close;
C. ods file html = 'sales.html'; ods file close;
D. ods html file = 'sales.html'; ods html close;
ODS는 Output Delivery Service의 약자로, 결과물을 어떤 형식으로 보낼지에 대한 설정을 말합니다. 그래서 문법이라서 외우면 됩니다. ods html file = 'sales.html'; ods html close; 마지막에 close로 끝난다라는게 다른 덤프문제에 나와있었죠.
Answer: D
반응형
'SAS > Base Programmer' 카테고리의 다른 글
[A00-211, Crambible] SAS Q68 - put @ (0) | 2017.06.01 |
---|---|
[A00-211, Crambible] SAS Q67 - error 문자형/숫자형 (0) | 2017.05.31 |
[A00-211, Crambible] SAS Q65 - cat, catx, !! (0) | 2017.05.30 |
[A00-211, Crambible] SAS Q64 - SAS log, error (0) | 2017.05.30 |
[A00-211, Crambible] SAS Q63 - set by, first/last, pdv (0) | 2017.05.30 |