Question 74:
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?
- Fail
- Get all Questions and Answer from here
- You need to have paid subscription to access all questions
- Thanks for considering Python Certification Material
Correct Answer : 3
Answer is 50.5
Bcause that value in between Fail( less than 50) and Pass( greater than 51) Conditions
try this ..
proc format;
value score 1 - 50 = 'Fail'
You can access to full explanation to question and answer from this page.