Google New or returning user — sign in with Google for instant login, no password needed. Sign in with Google Maybe later
Quiz title : Set - 001 - Part 01
Question 1 of 10




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?