Question 226
The following SAS program is submitted:
data work.accounting;
set work.department;
length jobcode $ 12;
jobcode='FAl';
run;
The WORK.DEPARTMENT data set contains a character variable named JOBCODE with a length of 5.
What is the result?
Question 227
Which one of the following is true of the RETAIN statement in a SAS DATA step program?
Question 228
A user-defined format has been created using the FORMAT procedure. Where is it stored?
Question 229
You're attempting to read a raw data file and you see the following messages displayed in the SAS Log:
What does it mean?
Question 230
The following SAS program is submitted:
data work.totalsales (keep = monthsales{12} );
set work.monthlysales (keep = year product sales);
array monthsales {12} ;
do i=1 to 12;
monthsales{i} = sales;
end;
run;
The data set named WORK.MONTHLYSALES has one observation per month for each of five years for a total of 60 observations.
Which one of the following is the result of the above program?
