반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 금강마신
- 무협
- 객경
- sas base
- 코레일
- 아비무쌍 #오존
- 노경찬
- 에듀윌 봉모
- 부교공 면접
- 모듈형 #산인공 #산업인력공단 #ncs #예시문제 #해설
- 신입사원 채용
- 산업인력공단 #산인공 #ncs #모듈형 #정오표
- 김윤상 객경 정오표
- 강웅
- 토르마무
- 객관식 경영학 정오표
- 김윤상
- 에듀윌특별판
- 부교공
- 객관식 경영학
- 부산교통공사
- 2024 부산교통공사 면접
- 아비무쌍
- 천소소
Archives
- Today
- Total
나루다루
SAS BASE Q16.length 본문
728x90
반응형
QUESTION NO: 16
The following SAS program is submitted:
data work.accounting;
set work.department;
length jobcode $ 12;
jobcode='FAl';
run;
The WORK.DEPARTMENT data set contains a character variable named JOBCODE with a length of 5. What is the result?
A. The length of the variable JOBCODE is 3.
B. The length of the variable JOBCODE is 5.
C. The length of the variable JOSBODE is 12.
D. The program fails to execute due to errors.
Answer: B
# 문제 풀이
- set work.department 구문이 가장 먼저 적용되므로 length는 5이다.
만약 length jobcode $ 12 구문이 set구문 위에 있었으면 length는 12가 된다.
728x90
반응형
'Study > SAS BASE' 카테고리의 다른 글
SAS BASE Q18. sum & grandtotal / subtotal (0) | 2018.02.13 |
---|---|
SAS BASE Q17. ods / Q66 참고. (0) | 2018.02.13 |
SAS BASE Q15.if & output (0) | 2018.02.13 |
SAS BASE Q14. 문자와 숫자의 비교 (0) | 2018.02.13 |
SAS BASE Q13. read data & dlm [수정] (0) | 2018.02.13 |
Comments