나루다루

SAS BASE Q39. 본문

Study/SAS BASE

SAS BASE Q39.

나루다루 2018. 10. 31. 01:10
728x90
반응형

QUESTION NO: 39

The following SAS program is submitted:

proc format value score 1 - 50 = 'Fail'

                                   51 - 100 = 'Pass';

run;

 

proc report data = work.courses nowd;

column exam;

define exam / display format = score.;

run;

 

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

 

A. Fail

B. Pass

C. 50.5

D. . (missing numeric value)

 

 

Answer: C





# 문제 풀이

 




728x90
반응형

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

SAS BASE Q41. array  (0) 2018.10.31
SAS BASE Q40. missover  (0) 2018.10.31
SAS BASE Q38. 정렬 옵션  (0) 2018.10.31
SAS BASE Q37. a+b / Q19와 비교  (0) 2018.10.31
SAS BASE Q36. dollar 옵션  (0) 2018.10.31
Comments