Data set named perm.students are listed below:
name age
Alfred 14
Alice 13
Barbara 13
Carol 14
This is the sas program using perm.students
libname perm 'sas-data-library';
data students;
set perm.students;
file 'file-specification';
put name $15. @5 age 2.;
run;
what does the output raw data file look like?
A.----|----10---|----20---|----30
Alfred 14
Alice 13
Barbara 13
Carol 14
B.----|----10---|----20---|----30
Alfr14
Alic13
Barb13a
Caro14
Why the right answer is B? Can someone ex