The SAS data set SASUSER.HOUSES contains a variable PRICE which has been assigned a permanent label of "Asking Price".
Which one of the following SAS programs temporarily replaces the label "Asking Price" with the label "Sale Price" in the output?
A. proc print data = sasuser.houses;
label price = "Sale Price";
run;
label price = "Sale Price";
run;
B. proc print data = sasuser.houses label;
label price "Sale Price";
run;
label price "Sale Price";
run;
C. proc print data = sasuser.houses label;
label price = "Sale Price";
run;
label price = "Sale Price";
run;
D. proc print data = sasuser.houses label = "Sale Price";
run;
run;
2 comments:
Answer C
Answer is C or D Please Explian SASGuru
Post a Comment