nerdexam
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)
  • A
    8% (3)
  • B
    70% (26)
  • C
    5% (2)
  • D
    16% (6)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice