Question 56 The following SAS program is submitted:

 proc sort data=work.test;

 by fname descending salary;

 run;

 Which one of the following represents how the observations are sorted?

  1. The data set Work.Test is sorted in ascending order by both Fname and Salary values.
  2. Get all Questions and Answer from here
  3. You need to have paid subscription to access all questions
  4. Thanks for considering SAS Certification Material

 Correct Ans : 4

 Exp : The DESCENDING keyword is placed before the variable name it modifies in the BY statement, so the correct description is in descending order by Salary value within ascending

 Fname values.

You can access to full explanation to question and answer from this page.