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 13
Question 1 of 10



The following SAS program is submitted:;

data stats;
set revenue;
array weekly{5} mon tue wed thu fri; 
<insert DO statement here>
total = weekly{i} * 
.25;
output;
end;
run;

Which one of the following DO statements completes the program and processes the elements of
the WEEKLY array?