SAS Base, A00-211 Crambible, SAS 크램바이블
SAS 베이스 자격증, SAS 문제풀이
NO: 145
The following SAS program is submitted:
data work.month;
date = put('13mar2000'd,ddmmyy10.);
run;
Which one of the following represents the type and length of the variable DATE in the output data set?
A. numeric, 8 bytes
B. numeric, 10 bytes
C. character, 8 bytes
D. character, 10 bytes
put은 숫자를 문자로
input은 문자를 숫자로 변환하는 명령어입니다.
일단 put이 왔으니 문자로 변환이 되었으니까 character 중에 답이겠지요.
데이타가 13/03/2000으로 표현되니까 10bytes가 됩니다.
비슷한문제 144번 참고하세요!!
Answer: D
반응형
'SAS > Base Programmer' 카테고리의 다른 글
[A00-211, SAS Crambible] SAS Q148 - 문자형 숫자형 값 (0) | 2017.06.15 |
---|---|
[A00-211, SAS Crambible] SAS Q147 (1) | 2017.06.11 |
[A00-211, SAS Crambible] SAS Q144 - put / input / date (0) | 2017.06.10 |
[A00-211, SAS Crambible] SAS Q143 - do while (142번 참고) (0) | 2017.06.10 |
[A00-211, SAS Crambible] SAS Q142 - do while, do until 비교!!! (0) | 2017.06.10 |