SAS_Institute
A00-211 · Question #211
Given the SAS data set EMPLOYEES: EMPLOYEES NAME SALARY -------- ------------ Innis 60000 Jolli 50000 Ellis 55000 Liu 45000 The following SAS program is submitted: proc print data = employees; where…
The correct answer is A. Liu only. See the full explanation below for the reasoning.
Question
Given the SAS data set EMPLOYEES:
EMPLOYEES NAME SALARY -------- ------------ Innis 60000 Jolli 50000 Ellis 55000 Liu 45000 The following SAS program is submitted:
proc print data = employees; where name like `_i%'; run; What is contained in the output?
Options
- ALiu only
- BInnis and Ellis only
- CInnis, Ellis, and Liu only
- DInnis, Jolli, Ellis, and Liu
How the community answered
(28 responses)- A75% (21)
- B4% (1)
- C14% (4)
- D7% (2)
Community Discussion
No community discussion yet for this question.