SAS_Institute
A00-211 · Question #146
Given the contents of the raw data file EMPLOYEE: ----|----10----|----20----|----30 Alan 19/2/2004 ACCT Rob 22/5/2004 MKTG MaryJane 14/3/2004 EDUC The following SAS program is submitted: data emps…
The correct answer is C. ddmmyy10. See the full explanation below for the reasoning.
Question
Given the contents of the raw data file EMPLOYEE:
----|----10----|----20----|----30 Alan 19/2/2004 ACCT Rob 22/5/2004 MKTG MaryJane 14/3/2004 EDUC The following SAS program is submitted:
data emps; infile `employee'; input@1 name$ @15 date <insert INFORMAT here> @25 department$; run; Which INFORMAT correctly completes the program?
Options
- Adate9.
- Bddmmyyyy9.
- Cddmmyy10.
- Dddmmyyyy10.
How the community answered
(27 responses)- A15% (4)
- B4% (1)
- C74% (20)
- D7% (2)
Community Discussion
No community discussion yet for this question.