Advertisement
1 / 10
Set - 001 - Part 03
Question 1 of 10




The following SAS program is submitted:;

%macro loop;
data one;
%do I=1 %to 3;
var&I=&I;%
end
run;
%mend;
%
loop
After this program executes; the following is written to the SAS log:;

(LOOP): Beginning execution
(LOOP): 
%DO loop beginning; index variable l; start value is 1stop value is 3by value
is 
1
(LOOP): 
%DO loop index variable l is now 2loop will iterate again
(LOOP): 
%DO loop index variable l is no 3loop will iterate again
(LOOP): 
%DO loop index variable l is no 4loop will iterate again
(LOOP): Ending execution

Which SAS system option displays the notes in the SAS log?




Saving progress… My progress
Advertisement