문제풀이/기타
SAS BASE Q33. library(사용자 정의 라이브러리)
나루다루
2018. 10. 30. 23:59
728x90
QUESTION NO: 33
The following SAS program is submitted:
data temp.x;
set sasuser.y;
run;
What must be submitted prior to this SAS program for the program to execute successfully?
A. A LIBNAME statement for the libref TEMP only must be submitted.
B. A LIBNAME statement for the libref SASUSER only must be submitted.
C. A LIBNAME statements for the librefs TEMP and SASUSER must be submitted.
D. No LIBNAME statement needs to be submitted.
Answer: A
# 구문 설명
- libref : library의 주소
# 문제 풀이
- 영구 라이브러리 : sasuser
- 기존에 존재하는 라이브러리. 따로 선언 해야 할 필요가 없다.
- 사용자 정의 라이브러리 : temp
- 사용자 정의 라이브러리는 미리 선언을 해야 한다.(libname 명령어)
728x90
반응형