나루다루

SAS BASE Q90. proc format / Q39 참조 본문

Study/SAS BASE

SAS BASE Q90. proc format / Q39 참조

나루다루 2018. 11. 3. 01:41
728x90
반응형

 

QUESTION NO: 90

The following SAS program is submitted:

proc format;

value score

1 - 50 = 'Fail'

51 - 100 = 'Pass';

run;

 

proc freq data=WORK.COURSES ;

table Exam;

format Exam score.;

run;

 

The variable Exam has a value of 50.5. How will the Exam variable value be displayed in the FREQ procedure output?

 

A. Fail

B. Pass

C. 50.5

D. . (missing numeric value)

 

 

Answer: C





# 문제 풀이

 - Q39번과 똑같은 문제

728x90
반응형
Comments