The following SAS program is submitted:%macro loop;data one;%do I=1 %to 3;var&I=&I%endrun;%mend;%loopAfter this program executes; the following is written to the SAS log:(LOOP): Beginning execution(LOOP): %DO loop beginning; index variable l; start value is 1; stop value is 3; by value is 1(LOOP): %DO loop index variable l is now 2; loop will iterate again(LOOP): %DO loop index variable l is no 3; loop will iterate again(LOOP): %DO loop index variable l is no 4; loop will iterate again(LOOP): Ending executionWhich SAS system option displays the notes in the SAS log?
Given the SAS data sets ONE and TWO:The following SAS program is submitted:Data combine;Merge one two;By id;Run;Which SQL procedure program procedures the same results?
The following SAS program is submitted:proc contents data = testdata.one;run;Which SQL procedure program produces similar information about the column attributes of the dataset TESTDATA.ONE?
The following SAS program is submitted:data temp;array points{2,3} (10,15,20,25,30,35);run;What impact does the ARRAY statement have in the Program Data Vector(PDV)?
Given the SAS data set ONE:ONE -NUM VAR -1 A2 B3 CWhich SQL procedure program deletes the data set ONE?
The following SAS program is submitted:Data sasuser.history;Set sasuser.history(keep=state x yRename = (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?