SAS_Institute
A00-211 · Question #106
When the following SAS program is submitted, the data set SASDATA.PRDSALES contains 5000 observations: libname sasdata 'SAS-data-library'; options obs = 500; proc print data = sasdata.prdsales…
The correct answer is B. 401 for PROC PRINT. See the full explanation below for the reasoning.
Question
When the following SAS program is submitted, the data set SASDATA.PRDSALES contains 5000 observations:
libname sasdata 'SAS-data-library'; options obs = 500; proc print data = sasdata.prdsales (firstobs = 100); run; options obs = max; proc means data = sasdata.prdsales (firstobs = 500); run; How many observations are processed by each procedure?
Options
- A400 for PROC PRINT
- B401 for PROC PRINT
- C401 for PROC PRINT
- D500 for PROC PRINT
How the community answered
(37 responses)- A8% (3)
- B70% (26)
- C5% (2)
- D16% (6)
Community Discussion
No community discussion yet for this question.