The correct Answer is
data family;
infile 'file specification' dlm=' ,';
input relation$ firstname$ ;
run;
Here we also add 'space' as delimiter with 'comma' then we get the output.
So we choose Option C as correct. Because we can write this program similar to option C only.
The correct answer is
data family;
infile 'file specification';
input relation$ firstname$ ;
run;
Here 'dlm' is not needed because ',' is given at the end not in between variables.
I tried to Run this program with Option C output comes Error.
If we mention dlm as ',' then son Travis will be taken under single variable. Can someone please make me understand the answer
upvoted 1 times
...
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Mouni_18
1 year, 2 months agoMouni_18
1 year, 2 months agoAnusha_91
1 year, 4 months ago