The following SAS program is submitted:data work.month;date = put('13mar2000'd,ddmmyy10.);run;Which one of the following represents the type and length of the variable DATE in the output data set?
The following SAS program is submitted:data work.month;date = input('13mar2000',date9.);run;Which one of the following represents the type and length of the variable DATE in the output data set?
The following SAS program is submitted:data work.products;Product_Number = 5461;Item = '1001';Item_Reference = Item'/'Product_Number;run;Which one of the following is the value of the variable ITEM_REFERENCE in the output data set?
The following SAS program is submitted:data work.retail;cost = '20000';total = .10 * cost;run;Which one of the following is the value of the variable TOTAL in the output data set?
The following SAS program is submitted:data work.test;Author = 'Agatha Christie';First = substr(scan(author,1,' ,'),1,1);run;Which one of the following is the length of the variable FIRST in the output data set?
The following SAS program is submitted:data work.test;Author = 'Christie, Agatha';First = substr(scan(author,2,' ,'),1,1);run;Which one of the following is the value of the variable FIRST in the output data set?