Question 84:The contents of the SAS data set named PERM.STUDENTS are listed below:

 name age

 Alfred 14

 Alice 13

 Barbara 13

 Carol 14

 The following SAS program is submitted using the PERM.STUDENTS data set as input:

 libname perm 'SAS-data-library';

 data students;

 set perm.students;

 file 'file-specification';

 put name $15. @5 age 2.;

 run;

 Which one of the following represents the values written to the output raw data file?

 1.

 --------10-------20-------30

 Alfred 14

 Alice 13

 Barbara 13

 Carol 14

2Get all Questions and Answer from here

3.You need to have paid subscription to access all questions

4.Thanks for considering Python Certification Material

 Correct Answer : 2

 Exp: Answer is 2 because @5 age 2. will not create space for itself but rather it will overwrite name $15, which is written first. So Alfred written by name variable will become

You can access to full explanation to question and answer from this page.