nerdexam
SAS_Institute

A00-211 · Question #172

The Excel workbook REGIONS.XLS contains the following four worksheets: EAST WEST NORTH SOUTH The following program is submitted: libname MYXLS 'regions.xls'; Which PROC PRINT step correctly displays…

The correct answer is D. proc print data=MYXLS.'NORTH$'n. See the full explanation below for the reasoning.

Question

The Excel workbook REGIONS.XLS contains the following four worksheets:

EAST WEST NORTH SOUTH The following program is submitted:

libname MYXLS 'regions.xls'; Which PROC PRINT step correctly displays the NORTH worksheet?

Options

  • Aproc print data=MYXLS.NORTH;
  • Bproc print data=MYXLS.NORTH$;
  • Cproc print data=MYXLS.'NORTH'e;
  • Dproc print data=MYXLS.'NORTH$'n;

How the community answered

(17 responses)
  • A
    6% (1)
  • B
    12% (2)
  • C
    6% (1)
  • D
    76% (13)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice