SAS Base, A00-211 Crambible 

SAS 베이스 자격증 


QUESTION NO: 33 


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 thelibref TEMP only must be submitted.
B. A LIBNAME statement for thelibref SASUSER only must be submitted.

C. LIBNAME statements for thelibrefs TEMP and SASUSER must be submitted. 

D. No LIBNAME statement needs to be submitted.



temp.x, temp라는 라이브러리에 x 라는 데이터를 만들려고 합니다. set을 통해 영구 library에 있는 y를 가져오려고 합니다. 이때 temp라는 라이브러리가 사전에 정의되어야합니다. 반 SASUSER 는 SAS안에있는 라이브러리여서 default로 y라는 파일만 있으면 오류가 생기지 않습니다. 


Answer: A 


반응형

+ Recent posts