나루다루

SAS BASE Q60. @@ (???) 본문

Study/SAS BASE

SAS BASE Q60. @@ (???)

나루다루 2018. 11. 1. 23:52
728x90
반응형

QUESTION NO: 60

The following SAS program is submitted:

data test;

infile 'file specification';

input name $ amount@@;

run;

 

Which of the following is true?

 

A. Two @@ together are the same as one c.

B. Two @@ hold the data records until the bottom of the DATA step.

C. Two @@ hold the raw data record across iterations of the DATA step.

D. Two @@ are invalid syntax and will cause the program to fail to execute.

 

 

Answer: C





# 문제 풀이

 - 

728x90
반응형

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

SAS BASE Q62. ??  (0) 2018.11.02
SAS BASE Q61. 정렬(sort)  (0) 2018.11.01
SAS BASE Q59. @ & informat [수정] ???  (0) 2018.11.01
SAS BASE Q58. first/last & if  (0) 2018.11.01
SAS BASE Q57.  (0) 2018.10.31
Comments