The SAS data set SASUSER.HOUSES contains a variable PRICE which has been assigned a permanent label of "Asking Price". Which SAS program temporarily replaces the label "Asking Price" with the label "Sale Price" in the output?
The following SAS program is submitted:What is produced as output?
The following SAS program is submitted:data work.empsalary;set work.people (in = inemp)work.money (in = insal);if insal and inemp;run;The SAS data set WORKPEOPLE has 5 observations, and the data set WORKMONEY has 7 observations. How many observations will the data setWORK.EMPSALARY contain?
You're attempting to read a raw data file and you see the following messages displayed in the SAS Log:What does it mean?
The following SAS program is submitted:data work.accounting;set work.dept1 work.dept2;jobcode = FA1;length jobcode $ 8;run;A character variable named JOBCODE is contained in both the WORK.DEPT1 and WORK.DEPT2 SAS data sets. The variable JOBCODE has a length of 5 in theWORK.DEPT1 data set and a length of 7 in the WORK.DEPT2 data set. What is the length of the variable JOBCODE in the output data set?
The following SAS program is submitted:data WORK.COMPRESS;ID = "˜1968 05-10 567';NewID = compress (ID, "-");run;What will the value of NewID be in the WORK.COMPRESS data set?