나루다루

SAS BASE Q31. 본문

Study/SAS BASE

SAS BASE Q31.

나루다루 2018. 10. 30. 02:08
728x90
반응형

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.

 

 

Answer: C




# 문제 풀이

 - 

728x90
반응형

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

SAS BASE Q33. library(사용자 정의 라이브러리)  (0) 2018.10.30
SAS BASE Q32. input & if [수정]  (0) 2018.10.30
SAS BASE Q30. 대소문자 구분 [수정]  (0) 2018.10.30
SAS BASE Q29. varnum  (0) 2018.10.30
SAS BASE Q28. @  (0) 2018.10.30
Comments