SAS_Institute
A00-201 · Question #7
7: The SAS data set QTR1_REVENUE is listed below: destination revenue TYS 53634 FRA 62129 ZZA 82129 RDU 75962 XYZ 82174 The following SAS program is submitted: proc sort data = qtr1_revenue; by…
The correct answer is D. destination FRA, revenue 75962. See the full explanation below for the reasoning.
Question
7: The SAS data set QTR1_REVENUE is listed below:
destination revenue
TYS 53634
FRA 62129
ZZA 82129
RDU 75962
XYZ 82174
The following SAS program is submitted:
proc sort data = qtr1_revenue;
by destination descending revenue;
run;
Which one of the following represents the first observation in the output data set?
Options
- Adestination XYZ, revenue 82174
- Bdestination TYS, revenue 53634
- Cdestination FRA, revenue 62129
- Ddestination FRA, revenue 75962
How the community answered
(34 responses)- A3% (1)
- B6% (2)
- C9% (3)
- D82% (28)
Community Discussion
No community discussion yet for this question.