나루다루

SAS BASE Q28. @ 본문

Study/SAS BASE

SAS BASE Q28. @

나루다루 2018. 10. 30. 01:53
728x90
반응형

QUESTION NO: 28

The contents of the raw data file PRODUCT are listed below:

24613   $25.31

 

The following SAS program is submitted:

data inventory;

infile 'product';

input idnum 5. @10 price;

run;

 

Which one of the following is the value of the PRICE variable?

 

A. 25.31

B. $25.31

C. . (missing numeric value)

D. No value is stored as the program fails to execute due to errors.

 

 

Answer: A





# 문제 풀이

 - @10 : 데이터의 10번째 값부터 읽겠다는 뜻



728x90
반응형

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

SAS BASE Q30. 대소문자 구분 [수정]  (0) 2018.10.30
SAS BASE Q29. varnum  (0) 2018.10.30
SAS BASE Q27. month , weekday  (0) 2018.10.30
SAS BASE Q26. proc sort [수정]  (0) 2018.10.30
[SAS BASE] informat 정리  (0) 2018.05.30
Comments