A00-211 Exam QuestionsBrowse all questions from this exam

A00-211 Exam - Question 57


The following SAS program is submitted:

proc sort data=SASUSER.PROJECTS out=PSORT;

by Product Code descending Date Cost;

run;

Which of the following is true concerning the submitted program?

Show Answer
Correct Answer: A

In the SAS program provided, the 'descending' keyword affects only the variable immediately following it, which is 'Date'. Each variable listed after 'by' in the 'proc sort' statement is considered independently unless each is explicitly preceded by 'descending'. Therefore, the correct answer is that the descending option applies only to the Date variable.

Discussion

2 comments
Sign in to comment
ExamHWOption: A
Feb 11, 2024

a is correct

DEAWSOption: A
Feb 14, 2024

The descending option applies only to the Date variable. Correct Answer : A