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?
A.
proc print data = sasuser.houses; label price = "Sale Price"; run;
B.
proc print data = sasuser.houses label; label price "Sale Price"; run;
C.
proc print data = sasuser.houses label; label price = "Sale Price"; run;
D.
proc print data = sasuser.houses; price = "Sale Price"; run;
I have ran option C in Sas studio and verify its correct answer
upvoted 3 times
...
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
_124
1 year, 1 month agoMandar77
2 years, 5 months ago