SAS_Institute
A00-201 · Question #12
12: The following SAS program is submitted: data work.staff; JobCategory = 'FA'; JobLevel = '1'; JobCategory = JobCategory || JobLevel; run; Which one of the following is the value of the variable…
The correct answer is B. FA1. See the full explanation below for the reasoning.
Question
12: The following SAS program is submitted:
data work.staff;
JobCategory = 'FA';
JobLevel = '1';
JobCategory = JobCategory || JobLevel;
run;
Which one of the following is the value of the variable JOBCATEGORY in the output data set?
Options
- AFA
- BFA1
- CFA 1
- D' ' (missing character value)
How the community answered
(22 responses)- A18% (4)
- B73% (16)
- C5% (1)
- D5% (1)
Community Discussion
No community discussion yet for this question.