nerdexam
SAS_Institute

A00-212 · Question #33

The following SAS program is submitted: options reuse = YES; data sasuser.RealEstate(compress = CHAR); set sasuser.houses; run; What is the effect of the REUSE=YES SAS system option?

The correct answer is B. It tracks and recycles free space. See the full explanation below for the reasoning.

Question

The following SAS program is submitted:

options reuse = YES; data sasuser.RealEstate(compress = CHAR); set sasuser.houses; run; What is the effect of the REUSE=YES SAS system option?

Options

  • AIt allows updates in place.
  • BIt tracks and recycles free space.
  • CIt allows a permanently stored SAS data set to be replaced.
  • DIt allows users to access the same SAS data set concurrently.

How the community answered

(51 responses)
  • A
    14% (7)
  • B
    78% (40)
  • C
    6% (3)
  • D
    2% (1)

Community Discussion

No community discussion yet for this question.

Full A00-212 Practice