A raw data file is listed below
1---+----10---+----20---+--- son Frank 01/31/89 daughter June 12-25-87 brother Samuel 01/17/51 The following program is submitted using this file as input: data work
family; infile 'file-specification'; run; Which INPUT statement correctly reads the values for the variable Birthdate as SAS date values
input relation $ first_name $ birthdate date9
input relation $ first_name $ birthdate mmddyy8
input relation $ first_name $ birthdate : date9
input relation $ first_name $ birthdate : mmddyy8
; Correct answ er: d An informat is used to translate the calendar date to a SAS date value
The date values are in the form of two-digit values for month-day-year, so the MMDDYY8
informat must be used
When using an informat with list inp