Given the following SAS data set ONE:ONE -LEVEL AGE -1 102 203 202 101 102 303 102 203 301 10The following SAS program is submitted:proc sql;select level, max(age) as MAXfrom onegroup by levelhaving max(age) > (select avg(age) from one);quit;Which one of the following reports is generated?
Which one of the following is true regarding the KEEP statement?
Which one of the following displays the definition of a stored SQL procedure view in theSAS log?
The following SAS program is submitted:data temp;array points{2,3}_temporary_;run;Which one of the following is the maximum number of elements that are stored?
Which one of the following is the purpose of the IDXNAME= data set option?
The DICTIONARY.MACROS table stores information about which of the following?