Exit A00-211 SAS Base Programming for SAS 9
Question 2 of 5
0% complete
Q2 Single choice

The following program is submitted:

proc sort data=SASUSER.PROJECTS out=PSORT;
by Code descending Date Cost;
run;

Which of the following is true concerning the submitted program?

  • A

    The descending option applies to the variable Code.

  • B

    The variable Code is sorted by ascending order.

  • C

    The PSORT data set is stored in the SASUSER library.

  • D

    The descending option applies to the Date and Cost variables.