나루다루

SAS BASE Q62. ?? 본문

Study/SAS BASE

SAS BASE Q62. ??

나루다루 2018. 11. 2. 00:14
728x90
반응형

QUESTION NO: 62

The following SAS program is submitted:

data numrecords;

infile 'file specification';

input@1 patient $15.

relative$ 16-26@;

if relative = 'children' then input @54 diagnosis $15. @;

else if relative = 'parents' then

input @28 doctor $15.

clinic $ 44-53

@54 diagnosis $15. @;

input age;

run;

 

How many raw data records are read during each iteration of the DATA step execution?

 

A. 1

B. 2

C. 3

D. 4

 

 

Answer: B





# 문제 풀이

 - 

728x90
반응형

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

SAS BASE Q64. keep  (0) 2018.11.02
SAS BASE Q63. first [수정]  (0) 2018.11.02
SAS BASE Q61. 정렬(sort)  (0) 2018.11.01
SAS BASE Q60. @@ (???)  (0) 2018.11.01
SAS BASE Q59. @ & informat [수정] ???  (0) 2018.11.01
Comments