A00-211 Web TestEngine demo

Exit VCEDump A00-211 SAS Base Programming for SAS 9
Question 34 of 41
0% complete
Q34 Single choice

Given the SAS data set PERM.STUDENTS:

PERM.STUDENTS NAME AGE
--------- ------- Alfred 14
Alice 13
Barbara 13
Carol 14

The following SAS program is submitted:
libname perm `SAS data library';
data students;
set perm.students;
file `file specification';
put name $ age;
<insert statement here>
run;

The following double-spaced file is desired as output

Alfred 14
Alice 13
Barbara 13
Carol 14

Which statement completes the program and creates the desired file?

Sign in to mark questions

Sign in to save marked questions and return to this demo.

Sign in