나루다루

[SAS BASE] Q53. array & _temporary_ 본문

Study/SAS BASE

[SAS BASE] Q53. array & _temporary_

나루다루 2018. 5. 23. 04:23
728x90
반응형

QUESTION NO: 53

 

 

The following SAS program is submitted:

 

data work.test;

array items{3} _temporary_;

run;

 

What are the names of the variable(s) in the WORKTEST data set?

 

A. ITEMS

B. ITEMS1, ITEMS2, ITEMS3

C. No variables are created because it is a temporary array.

D. The program fails to execute because there are no variables listed on the ARRAY statement.

 

 

Answer: C




- array items{3} : 길이가 3인 items 배열 생성. items1 items2 items3

array items{3} _temporary_ : 데이터 셋에 배열이 출력되지 않음. (임시 변수)




               







728x90
반응형

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

[SAS BASE] Q55. weekdate.  (0) 2018.05.23
[SAS BASE] Q54. tables  (0) 2018.05.23
SAS BASE Q25. define[수정] ??  (0) 2018.03.01
SAS BASE Q24. weekday  (0) 2018.03.01
SAS BASE Q23. _ & %  (0) 2018.03.01
Comments