관리 메뉴

나루다루

[SAS BASE] Q53. array & _temporary_ 본문

문제풀이/기타

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

'문제풀이 > 기타' 카테고리의 다른 글

[SAS BASE] Q55. weekdate.  (0) 2018.05.23
[SAS BASE] Q54. tables  (0) 2018.05.23
[백준 10718번] We love kriii  (0) 2018.05.03
[백준 10172번] 개  (0) 2018.05.03
[백준 1000번/ 1001번] A+B / A-B  (0) 2018.05.03
Comments