A00-212 Exam QuestionsBrowse all questions from this exam

A00-212 Exam - Question 27


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

The following SAS program is submitted:

Show Answer
Correct Answer: A,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

1 comment
Sign in to comment
mhminkovOption: B
Aug 21, 2021

B. Generates a report without a problem