SAS_Institute
A00-212 · Question #1
The following SAS program is submitted: data sasuser.history; set sasuser.history(keep = State x y rename = (State = St)); total = sum(x, y); run; The SAS data set SASUSER.HISTORY has an index on…
The correct answer is A. The index on STATE is deleted. See the full explanation below for the reasoning.
Question
The following SAS program is submitted:
data sasuser.history; set sasuser.history(keep = State x y rename = (State = St)); total = sum(x, y); run; The SAS data set SASUSER.HISTORY has an index on the variable STATE. Which describes the result of submitting the SAS program?
Options
- AThe index on STATE is deleted.
- BThe index on STATE is updated as an index on ST.
- CThe index on STATE is recreated as an index on ST.
- DThe index on STATE is deleted and an index on ST is created.
How the community answered
(24 responses)- A71% (17)
- B4% (1)
- C17% (4)
- D8% (2)
Community Discussion
No community discussion yet for this question.