Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam A00-211 topic 1 question 13 discussion

Actual exam question from SAS Institute's A00-211
Question #: 13
Topic #: 1
[All A00-211 Questions]

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;
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
Mouni_18
7 months, 3 weeks ago
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.
upvoted 1 times
...
Mouni_18
7 months, 3 weeks ago
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.
upvoted 1 times
...
Anusha_91
9 months, 3 weeks ago
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
...
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.

SaveCancel
Loading ...