A00-211 Exam QuestionsBrowse all questions from this exam

A00-211 Exam - Question 62


Given the following raw data records:

The following output data set is desired:

Which SAS program correctly reads in the raw data?

Show Answer
Correct Answer: B

The correct SAS program needs to both specify the delimiter being used in the data (which is '*') and use the correct formats for reading the data. The 'dlm=' option specifies the delimiter, and 'dsd' option handles consecutive delimiters correctly and removes quotation marks if present. Option B correctly uses 'dlm=*' and 'dsd', along with specifying the format for the 'bdate' variable using ':mmddyy10.'. This will correctly read the data and produce the desired output.

Discussion

2 comments
Sign in to comment
ExamHWOption: B
Feb 11, 2024

b is correct

DEAWSOption: B
Feb 15, 2024

Correct Answer : B