The contents of the raw data file TEAM are listed below:
----|----10---|----20---|----30
Janice 10
Henri 11
Michael 11
Susan 12
The following SAS program is submitted:
data group;
infile 'team';
input name $15. age 2.;
file 'file-specification';
put name $15. +5 age 2.;
run;
Which one of the following describes the output created?
A. a raw data file only
B. No output is generated as the program fails to execute due to errors.
C. a SAS data set named GROUP only
D. a SAS data set named GROUP and a raw data file
Answer: D
----|----10---|----20---|----30
Janice 10
Henri 11
Michael 11
Susan 12
The following SAS program is submitted:
data group;
infile 'team';
input name $15. age 2.;
file 'file-specification';
put name $15. +5 age 2.;
run;
Which one of the following describes the output created?
A. a raw data file only
B. No output is generated as the program fails to execute due to errors.
C. a SAS data set named GROUP only
D. a SAS data set named GROUP and a raw data file
Answer: D
No comments:
Post a Comment