The following SAS program is submitted:%let value = 9;%let value2 = 5;%let newval = %eval(&value / &value2);Which one of the following is the resulting value of the macro variable NEWVAL?
The following SAS program is submitted:%let lib = %upcase(sasuser);proc sql;select nvarfrom dictionary.tableswhere libname = "&lib";quit;Given that several SAS data sets exist in the SASUSER library, which one of the following is generated as output?
Given the following SAS data set ONE:ONE -GROUP SUM -A 765 -B 123 -C 564 -The following SAS program is submitted:data _null_;set one;call symput(group,sum);run;Which one of the following is the result when the program finishes execution?
The SAS data set ONE consists of five million observations and has 25 variables.Which one of the following SAS programs successfully creates three new variablesTOTREV, TOTCOST, and PROFIT and requires the least CPU time to be processed?
Given the following SAS data set ONE:ONE -COUNTRY CITY VISIT -USA BOSTON 10 -UK LONDON 5 -USA DALLAS 10 -UK MARLOW 10 -USA BOSTON 20 -UK LONDON 15 -USA DALLAS 10 -The following SAS program is submitted:proc sql;select country, city, sum(visit) as TOTALfrom onegroup by country, cityorder by country, total desc;quit;Which one of the following reports is generated?
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?