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 



반응형

+ Recent posts