문제풀이/기타
SAS BASE Q52. data _null_
나루다루
2018. 10. 31. 22:25
728x90
QUESTION NO: 52
The following SAS program is submitted:
Data _null_;
set old;
put sales1 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
Answer: A
# 문제 풀이
- data _null_ : 명령은 실행하지만, 데이터 셋은 생성하지 않는다. (log에는 표시된다)
- _null_ 이라는 데이셋이 생성되는 것은 아니다.
728x90
반응형