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?

  1. Fail
  2. Get all Questions and Answer from here
  3. You need to have paid subscription to access all questions
  4. 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.