SAS_Institute
A00-201 · Question #25
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…
The correct answer is C. 50.5. See the full explanation below for the reasoning.
Question
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?
Options
- AFail
- BPass
- C50.5
- D. (missing numeric value)
How the community answered
(31 responses)- A6% (2)
- B16% (5)
- C74% (23)
- D3% (1)
Community Discussion
No community discussion yet for this question.