SAS_Institute
A00-212 · Question #106
The following SAS FORMAT procedure is submitted: proc format lib = sasuser; value tempc low < 0 = 'BELOW FREEZING' 0 < 5 = 'COLD' 5 < 10 = 'MILD' 10 < 15 = 'WARM' 15 high = 'HOT'; run; How is the…
The correct answer is C. WARM. See the full explanation below for the reasoning.
Question
The following SAS FORMAT procedure is submitted:
proc format lib = sasuser; value tempc low < 0 = 'BELOW FREEZING' 0 < 5 = 'COLD' 5 < 10 = 'MILD' 10 < 15 = 'WARM' 15 high = 'HOT'; run; How is the value 10 displayed when the format TEMPC is applied?
Options
- A10
- BMILD
- CWARM
- DBELOW FREEZING
How the community answered
(35 responses)- A9% (3)
- B3% (1)
- C83% (29)
- D6% (2)
Community Discussion
No community discussion yet for this question.