Which SAS program correctly reads in the raw data?

Given the following raw data record:
—-I—-10—I—-20—I—-30
son Travis,
The following output is desired:
Obs relation firstname
1 son Travis
Which SAS program correctly reads in the raw data?
A. data family ( dIm = ‘,’); infile ’tile specification’; input relation $ firstname $; run;
B. options dIm = ‘,’; data family; infile ‘file specification’; input relation $ firstname $; run;
C. data family; infile ‘file specification’ dIm = ‘,’; input relation $ firstname $; run;
D. data family; infile ‘file specification’; input relation $ firstname $ / dim = ‘,’; run;

Download Printable PDF. VALID exam to help you PASS.

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.