SAS_Institute
A00-211 · Question #184
The following SAS program is submitted: data WORK.ACCOUNTING; set WORK.DEPARTMENT; label Jobcode='Job Description'; run; Which statement is true about the output dataset?
The correct answer is C. The label of the variable Jobcode is Job Description. See the full explanation below for the reasoning.
Question
The following SAS program is submitted:
data WORK.ACCOUNTING; set WORK.DEPARTMENT; label Jobcode='Job Description'; run; Which statement is true about the output dataset?
Options
- AThe label of the variable Jobcode is Job (only the first word).
- BThe label of the variable Jobcode is Job Desc (only the first 8 characters).
- CThe label of the variable Jobcode is Job Description.
- DThe program fails to execute due to errors. Labels must be defined in a PROC step.
How the community answered
(41 responses)- A5% (2)
- B10% (4)
- C83% (34)
- D2% (1)
Community Discussion
No community discussion yet for this question.