반응형
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 #모듈형 #정오표
- sas base
- 금강마신
- 부교공
- 무협
- 모듈형 #산인공 #산업인력공단 #ncs #예시문제 #해설
- 천소소
- 객경
- 강웅
- 2024 부산교통공사 면접
- 신입사원 채용
- 아비무쌍 #오존
Archives
- Today
- Total
나루다루
SAS BASE Q45. libname 본문
728x90
반응형
QUESTION NO: 45
The following SAS program is submitted:
libname temp 'SAS data library';
data temp.sales;
merge temp.sales work.receipt;
by names;
run;
The input data files are sorted by the NAMES variable:
What is the result?
A. The program executes successfully and a temporary SAS data set is created.
B. The program executes successfully and a permanent SAS data set is created.
C. The program fails execution because the same SAS data set is referenced for both read and write operations.
D. The program fails execution because the SAS data sets on the MERGE statement are in two different libraries.
Answer: B
# 문제 풀이
- libname 명령어를 통해서 사용자 정의 라이브러리인 temp를 만들었다.
- work는 기존에 있는 라이브러리이며 임시 라이브러리이다.
728x90
반응형
'Study > SAS BASE' 카테고리의 다른 글
SAS BASE Q47. sas catalog & format (0) | 2018.10.31 |
---|---|
SAS BASE Q46. input+1 옵션[수정] (0) | 2018.10.31 |
SAS BASE Q44. mean(of ) (0) | 2018.10.31 |
SAS BASE Q43. (0) | 2018.10.31 |
SAS BASE Q42. _ERROR_ variable (0) | 2018.10.31 |
Comments