나루다루

SAS BASE Q33. library(사용자 정의 라이브러리) 본문

Study/SAS BASE

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
반응형

'Study > SAS BASE' 카테고리의 다른 글

SAS BASE Q35. crosslist  (0) 2018.10.31
SAS BASE Q34. format의 순서  (0) 2018.10.31
SAS BASE Q32. input & if [수정]  (0) 2018.10.30
SAS BASE Q31.  (0) 2018.10.30
SAS BASE Q30. 대소문자 구분 [수정]  (0) 2018.10.30
Comments