카테고리 없음

QUESTION NO: 33

IT grow. 2019. 3. 10. 23:00
반응형

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 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.  

Answer: A




Solution : 

data 로써 사용될 temp는 지정되어 있어야 하고 , sasuser는 영구적인 것이기 때문에 , 선언해줄 필요가 없다 .

반응형