나루다루

SAS BASE Q52. data _null_ 본문

Study/SAS BASE

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
반응형

'Study > SAS BASE' 카테고리의 다른 글

SAS BASE Q54. tables [수정]  (0) 2018.10.31
SAS BASE Q53. array & _temporary_  (0) 2018.10.31
SAS BASE Q51. 세미콜론(;) / 추가 문제  (0) 2018.10.31
SAS BASE Q50. 문자형 변수  (0) 2018.10.31
SAS BASE Q49. if문  (0) 2018.10.31
Comments