Question 28:

 Given the contents of the raw data file EMPLOYEE:

 ----|----10----|----20----|----30

 Amit

 19/2/2004

 ACCT

 Rohit

 22/5/2004

 MKTG

 Manglesh

 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?

  1. date9
  2. Get all Questions and Answer from here
  3. You need to have paid subscription to access all questions
  4. Thanks for considering SAS Certification Material

 Correct Answer : 3 Exp : DATEw. day, month abbreviation, and year:

 17oct91 ddmonyy DATETIMEw.d date and time: ddmonyy:hh:mm:ss

 17oct91:14:45:32 DDMMYYw. day, month, year: ddmmyy, dd/mm/yy,

 17/10/91 dd-mm-yy, or dd mm yy JULIANw. year and day of year (Julian dates): yyddd

You can access to full explanation to question and answer from this page.