The following SAS DATA step is submitted:data work.accounting;set work.department;length jobcode $ 12;run;The WORK.DEPARTMENT SAS data set contains a character variable named JOBCODE with a length of 5. Which one of the following is the length of the variable JOBCODE in the output data set?
Which one of the following SAS statements renames two variables?
The following SAS program is submitted:data work.company;set work.dept1(keep = jobcode)work.dept2(rename = (jcode = jobcode));run;Which one of the following is the result?
The following SAS program is submitted:data work.staff;JobCategory = 'FA';JobLevel = '1';JobCategory = JobCategory || JobLevel;run;Which one of the following is the value of the variable JOBCATEGORY in the output data set?
The following SAS program is submitted:data work.one;x = 3;y = 2;z = x ** y;run;Which one of the following is the value of the variable Z in the output data set?
The SAS data set named WORK.TEST is listed below:capacity airplanetype staff150 Large 10Which one of the following SAS programs created this data set?