Given the following SAS data set named WORK.INTERNAT:WORK.INTERNAT -LOCATION SUM -USA 30 -EUR 40 -The following SAS program is submitted:%let LOC = Usa;proc sql;select *from internatwhere location = "&Loc";quit;Which one of the following is the result when the above code is executed on the above data set?
The following SAS program is submitted:%let a = cat;%macro animal(a = frog);%let a = bird;%mend;%animal(a = pig)%put a is &aWhich one of the following is written to the SAS log?
The following SAS program is submitted:proc sql;select *from dictionary.tables;quit;Which one of the following is reported?
The following SAS program is submitted:data two;y = '2';run;%let x = 10;%let var = y;data one;set two (keep = &var);z = &var * &xrun;Which one of the following is the value of the variable Z when the program finishes execution?
Which one of the following options is available for SAS macro debugging?
The following SAS program is submitted:%let first = yourname;%let last = first;%put &&&lastWhich one of the following is the result in the log of the %PUT statement?