반응형
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 |
29 | 30 | 31 |
Tags
- 부교공
- 코레일
- 객관식 경영학
- 무협
- 토르마무
- 객관식 경영학 정오표
- 산업인력공단 #산인공 #ncs #모듈형 #정오표
- 강웅
- 에듀윌특별판
- 2024 부산교통공사 면접
- 모듈형 #산인공 #산업인력공단 #ncs #예시문제 #해설
- 객경
- 김윤상
- 김윤상 객경 정오표
- 에듀윌 봉모
- 노경찬
- 부산교통공사
- 아비무쌍 #오존
- sas base
- 아비무쌍
- 천소소
- 부교공 면접
- 신입사원 채용
- 금강마신
Archives
- Today
- Total
나루다루
SAS BASE Q37. a+b / Q19와 비교 본문
728x90
반응형
QUESTION NO: 37
Given the raw data file YEARAMT:
1901 2
1905 1
1910 6
1925 .
1941 1
The following SAS program is submitted:
data coins;
infile 'yearamt';
input year quantity;
<insert statement(s) here>
run;
Which statement(s) completed the program and produced a non-missing value for the variable TOTQUANTITY in the final observation of the output data set?
A. totquantity + quantity;
B. totquantity = sum(totquantity + quantity);
C. retain totquantity; totquantity = totquantity + quantity;
D. retain totquantity0; totquantity = totquantity + quantity;
Answer: A
# 문제 풀이
- Q19번과 비교해봤을 때 약간 혼란이 생길 수 있다. 다시 정리하자면, a=결측 b=10일 때
- c=a+b : c에는 결측값이 저장된다.
- a+b : a에는 결측값이 아닌 10이 저장된다.
- c=sum(a,b) : c에 10이 저장된다.
=> 따라서 답이 A번이 된다.
728x90
반응형
'Study > SAS BASE' 카테고리의 다른 글
SAS BASE Q39. (0) | 2018.10.31 |
---|---|
SAS BASE Q38. 정렬 옵션 (0) | 2018.10.31 |
SAS BASE Q36. dollar 옵션 (0) | 2018.10.31 |
SAS BASE Q35. crosslist (0) | 2018.10.31 |
SAS BASE Q34. format의 순서 (0) | 2018.10.31 |
Comments