The following SAS program is submitted:data WORK.AUTHORS;array Favorites{3} $ 8 ('Shakespeare','Hemingway','McCaffrey'); run;What is the value of the second variable in the dataset WORK.AUTHORS?
The following SAS program is submitted:data one;addressl = 214 London Way;run;data one;set one;address = tranwrd(address1, Way, Drive); run;What are the length and value of the variable ADDRESS?
The SAS data set Fed.Banks contains a variable Open_Date which has been assigned a permanent label of "Open Date". Which SAS program temporarily replaces the label "Open Date" with the label "Starting Date" in the output?
The following SAS program is submitted:data work.sets;do until (prod gt 6);prod + 1;end;run;What is the value of the variable PROD in the output data set?
Consider the following data step:In filtering the values of the variable X in data set WORK.OLD, what value new value would be assigned to X if its original value was a missing value?
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?