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)- A8% (3)
- B71% (27)
- C5% (2)
- D16% (6)
Community Discussion
No community discussion yet for this question.