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)- A14% (7)
- B78% (40)
- C6% (3)
- D2% (1)
Community Discussion
No community discussion yet for this question.