SAS_Institute
A00-202 · Question #32
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; SAS A00-202…
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; SAS A00-202 Exam How is the value 10 displayed when the format TEMPC is applied?
Options
- A10
- BBELOW FREEZING
- CWARM
- DMILD
How the community answered
(47 responses)- A4% (2)
- B2% (1)
- C85% (40)
- D9% (4)
Community Discussion
No community discussion yet for this question.