nerdexam
SAS_Institute

A00-201 · Question #93

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 4500 for PROC MEANS. 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 4500 for PROC MEANS
  • B401 for PROC PRINT 4500 for PROC MEANS
  • C401 for PROC PRINT 4500 for PROC MEANS
  • D500 for PROC PRINT 5000 for PROC MEANS

How the community answered

(15 responses)
  • A
    13% (2)
  • B
    73% (11)
  • C
    7% (1)
  • D
    7% (1)

Community Discussion

No community discussion yet for this question.

Full A00-201 Practice