SAS_Institute
A00-201 · Question #75
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…
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.
How the community answered
(38 responses)- A13% (5)
- B3% (1)
- C74% (28)
- D11% (4)
Community Discussion
No community discussion yet for this question.