SAS_Institute
A00-211 · Question #98
The contents of two SAS data sets named EMPLOYEE and SALARY are listed below: EMPLOYEE SALARY name age name salary Bruce 30 Bruce 40000 Dan 35 Bruce 35000 Dan 37000 Dan . The following SAS program…
The correct answer is A. 2. See the full explanation below for the reasoning.
Question
The contents of two SAS data sets named EMPLOYEE and SALARY are listed below:
EMPLOYEE SALARY name age name salary Bruce 30 Bruce 40000 Dan 35 Bruce 35000 Dan 37000 Dan . The following SAS program is submitted:
data work.empsalary; merge work.employee (in = inemp) work.salary (in = insal); by name; if inemp and insal; run; How many observations will the data set WORK.EMPSALARY contain?
Options
- A2
- B4
- C5
- D6
How the community answered
(38 responses)- A74% (28)
- B8% (3)
- C16% (6)
- D3% (1)
Community Discussion
No community discussion yet for this question.