나루다루

SAS BASE Q32. input & if [수정] 본문

Study/SAS BASE

SAS BASE Q32. input & if [수정]

나루다루 2018. 10. 30. 23:51
728x90
반응형

QUESTION NO: 32

Given the raw data file EMPLOYEE:

Ruth  39 11

Jose   32 22

Sue   30 33

John   40 44

 

The following SAS program is submitted:

data test;

infile 'employee';

input employee_name $ 1-4;

if employee_name = 'Ruth' then input idnum 10-11;

else input age 7-8;

run;

 

What value does the variable IDNUM contain when the name of the employee is "Ruth"?

 

A. 11

B. 22

C. 33

D. (missing numeric value)

 

 

Answer: B




# 문제 수정

 - 원데이터셋 이름 뒤에 공백이 2개.


# 문제 풀이

 - input employee_name $ 1-4; : 문자형 변수로, 원데이터셋의 1~4번째 데이터를 읽는다.



728x90
반응형

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

SAS BASE Q34. format의 순서  (0) 2018.10.31
SAS BASE Q33. library(사용자 정의 라이브러리)  (0) 2018.10.30
SAS BASE Q31.  (0) 2018.10.30
SAS BASE Q30. 대소문자 구분 [수정]  (0) 2018.10.30
SAS BASE Q29. varnum  (0) 2018.10.30
Comments