SAS_Institute
A00-212 · Question #60
The following SAS program is submitted: data new(bufsize = 6144 bufno = 4); set old; run; What is the difference between the usage of BUFFSIZE= and BUFNO= options?
The correct answer is B. BUFSIZE= specifies the size of the output buffer in bytes; BUFNO= specifies the number of. See the full explanation below for the reasoning.
Question
The following SAS program is submitted:
data new(bufsize = 6144 bufno = 4); set old; run; What is the difference between the usage of BUFFSIZE= and BUFNO= options?
Options
- ABUFSIZE= specifies the size of the input buffer in bytes; BUFNO= specifies the number of
- BBUFSIZE= specifies the size of the output buffer in bytes; BUFNO= specifies the number of
- CBUFSIZE= specifies the size of the input buffer in kilobytes; BUFNO= specifies the number of
- DBUFSIZE= specifies the size of the output buffer in kilobytes; BUFNO= specifies the number
How the community answered
(48 responses)- A8% (4)
- B85% (41)
- C4% (2)
- D2% (1)
Community Discussion
No community discussion yet for this question.