SAS Base, A00-211 Crambible 

SAS 베이스 자격증 


QUESTION NO: 52

The following SAS program is submitted: 


Data_null_;
set old;
put sales 1 sales2;

run;



Where is the output written?

A. to the SAS log
B. to the SAS data set _NULL_
C. to the SAS output window or to an output file
D. to the raw data file that was most recently opened


데이타 이름이 특이한데요. _null_ 보통 특수문자는 안되지만 _ null_(under bar)는 가능합니다. 즉, set old...이런 내용으로 진행하고 싶은데 다만 이걸 데이터 셋으로 지정하고 싶지 않을때, 단지 output window에서 결과물을 보는게 아니라 log창으로 결과물을 보고싶을때 사용합니다. 


Answer: A 


반응형

+ Recent posts