a*******7 发帖数: 23 | 1 QUESTION 104
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
QUESTION 109
The contents of the raw data file EMPLOYEE are listed below: | b******e 发帖数: 539 | 2 QUESTION 104:
Because format 'score'does not include anything in (50, 51), so anything in
that range is not formatted. | a*******7 发帖数: 23 | 3 豁然开朗!
谢谢了!
in
【在 b******e 的大作中提到】 : QUESTION 104: : Because format 'score'does not include anything in (50, 51), so anything in : that range is not formatted.
|
|