SAS_Institute
A00-201 · Question #105
61: The SAS data sets WORK.EMPLOYEE and WORK.SALARY are listed below: WORK.EMPLOYEE Fname age Bruce 40 Dan 40 WORK.SALARY Fname salary Bruce 25000 Bruce 35000 Dan 25000 The following SAS program is…
The correct answer is B. 4. See the full explanation below for the reasoning.
Question
61: The SAS data sets WORK.EMPLOYEE and WORK.SALARY are listed below: WORK.EMPLOYEE Fname age Bruce 40 Dan 40 WORK.SALARY Fname salary Bruce 25000 Bruce 35000 Dan 25000 The following SAS program is submitted: data work.empdata; merge work.employee by fname; totsal + salary; run; How many variables are output to the WORK.EMPDATA data set?
Options
- A3
- B4
- C5
- DNo variables are output to the data set as the program fails to execute due to errors.
How the community answered
(56 responses)- A4% (2)
- B71% (40)
- C16% (9)
- D9% (5)
Community Discussion
No community discussion yet for this question.