Which SAS program temporarily replaces the label "Open Date" with the label "Starting Date" in the output?

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?
A. proc print data=SASUSER.HOUSES label;
label Open_Date "Starting Date";
run;
B. proc print data=SASUSER.HOUSES label;
label Open_Date="Starting Date";
run;
C. proc print data=SASUSER.HOUSES;
label Open_Date="Starting Date";
run;
D. proc print data=SASUSER.HOUSES;
Open_Date="Starting Date";
run;

Download Printable PDF. VALID exam to help you PASS.

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.