Question 22: The following SAS program is submitted:

 proc report data=survey nowd;

 column age choice1;

 (insert DEFINE statement here)

 define choice1/display;

 run;

 Which one of the following DEFINE statements completes the program and displays values of the variable Age in ascending order?

  1. define age/sort;
  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 Answer : 2

 Exp : You use a DEFINE statement to describe how to order and use variables in your report. To specify Age as an order variable, you use the ORDER usage option in the DEFINE

 statement.

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