SAS Base, A00-211 Crambible 

SAS 베이스 자격증 


QUESTION NO: 31

Given the AIRPLANES data set 

AlRPLANES TYPE MPG

F-18 105
C-130 25
Harrier 75
A-6 110

The following SAS program is submitted: 

data gt100;

set airplanes(keep = type mpg load); 

load = mpg * 150;
run;



The program fails to execute due to syntax errors.

What is the cause of the syntax error?


A, MPG is not a numeric variable.

B. LOAD is not a variable in the data set GT100.

C. LOAD is not variable in the data set AIRPLANES.

D. LOAD must be defined prior to the SET statement.


AIRPLANES 데이터에는 TYPE와 MPG라는 변수가 있고요. 

이때, gt100이라는 데이타를 만들려고 할때, set을 이용해서 airplanes 데이터를 참고하는데, 일단 keep이란 명령어로 type, mpg을 가지고 또... load를 가져오려는데 airplanes에 load변수가 없습니다.


Answer: C 


반응형

+ Recent posts