nerdexam
SAS_Institute

A00-211 · Question #13

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 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

(35 responses)
  • A
    9% (3)
  • B
    3% (1)
  • C
    74% (26)
  • D
    14% (5)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice