SAS_Institute
A00-201 · Question #75
A00-201 Question #75: Real Exam Question with Answer & Explanation
The correct answer is C. A SAS data set named GROUP and a raw data file. See the full explanation below for the reasoning.
Question
The contents of the raw data file TEAM are listed below:
-----10----|----20----|----30
Janice 10
Henry 11
Michael 11
Susan 12
The following SAS program is submitted:
data group;
infile 'file-specification';
input name $15. +5 age 2.;
put name $15. +5 age 2.;
run;
Which one of the following describes the output created?
Options
- AA raw data file only
- BA SAS data set named GROUP only
- CA SAS data set named GROUP and a raw data file
- DNo output is generated as the program fails to execute due to errors.
Community Discussion
No community discussion yet for this question.