nerdexam
SAS_Institute

A00-212 · Question #84

The following SAS program is submitted: data new (bufsize = 6144 bufno = 4); set old; run; Which one of the following describes the difference between the usage of BUFSIZE= and BUFNO= options?

The correct answer is B. BUFSIZE= specifies the size of the output buffer in bytes. See the full explanation below for the reasoning.

Question

The following SAS program is submitted:

data new (bufsize = 6144 bufno = 4); set old; run; Which one of the following describes the difference between the usage of BUFSIZE= and BUFNO= options?

Options

  • ABUFSIZE= specifies the size of the input buffer in bytes;
  • BBUFSIZE= specifies the size of the output buffer in bytes;
  • CBUFSIZE= specifies the size of the output buffer in kilobytes;
  • DBUFSIZE= specifies the size of the output buffer in kilobytes;

How the community answered

(38 responses)
  • A
    8% (3)
  • B
    71% (27)
  • C
    5% (2)
  • D
    16% (6)

Community Discussion

No community discussion yet for this question.

Full A00-212 Practice