Which statement specifies that records 1 through 10 are to be read from the raw data file customer.txt?
Which statement specifies that records 1 through 10 are to be read from the raw data file customer.txt?
To specify that records 1 through 10 are to be read from a raw data file in SAS, you use the 'obs' (observations) option with the infile statement. The correct syntax is 'infile 'customer.txt' obs=10;'. This option instructs SAS to read only up to and including the 10th record. There is no range notation like 'obs=1-10' for specifying the beginning and ending records in SAS infile statements.
infile ‘customer.txt’ obs=10; correct is : C