nerdexam
SAS_Institute

A00-211 · Question #267

The Excel workbook REGIONS.XLSX contains the following four worksheets: EAST WEST NORTH SOUTH The following program is submitted: libname MYXLS XLSX `c:\ data\ regions.xlsx'; Which PROC PRINT step…

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

Question

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

EAST WEST NORTH SOUTH The following program is submitted:

libname MYXLS XLSX `c:\ data\ regions.xlsx'; Which PROC PRINT step correctly displays the NORTH worksheet?

Options

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

How the community answered

(48 responses)
  • A
    6% (3)
  • B
    4% (2)
  • C
    17% (8)
  • D
    73% (35)

Community Discussion

No community discussion yet for this question.

Full A00-211 Practice