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;
Answer: C
Latest A00-231 Dumps Valid Version with 262 Q&As
Latest And Valid Q&A | Instant Download | Once Fail, Full Refund
Subscribe
Login
0 Comments
Inline Feedbacks
View all comments