Exam A00-212 All QuestionsBrowse all questions from this exam
Question 27

The SAS data set WORK.TEMP is indexed on variable Id:

The following SAS program is submitted:

    Correct Answer: B

    The SAS program provided uses PROC PRINT with the BY statement. Since the WORK.TEMP dataset is indexed on the variable 'Id', the data does not need to be sorted in ascending or descending order beforehand. The index ensures that the data can be accessed in the required order, so the program generates a report without any issues.

Discussion
mhminkovOption: B

B. Generates a report without a problem