Given the following SAS data sets ONE and TWO:ONE TWO -NUM CHAR1 NUM CHAR2 -1 A1 2 X11 A2 2 X22 B1 3 Y2 B2 5 V4 DThe following SAS program is submitted creating the output table THREE: proc sql; create table three as select one.num, char1, char2 from one, two where one.num = two.num; quit;THREE -NUM CHAR1 CHAR2 -2 B1 X12 B1 X22 B2 X12 B2 X2Which one of the following DATA step programs creates an equivalent SAS data set THREE?
The following SAS program is submitted:%macro execute;<insert statement here>proc print data = sasuser.houses;run;%end;%mend;Which of the following completes the above program so that it executes on Tuesday?
Which one of the following statements is true regarding a SAS DATA step view?
Given the following SAS data sets ONE and TWO:ONE TWO -OBS COMMON X OBS COMMON Y -1 A 10 1 A 12 A 13 2 A 33 A 14 3 B 44 B 9 4 B 25 C 8 5 C 56 C 14The following SAS DATA step is submitted:data combine;merge one two;by common;run;Which one of the following represents the data values stored in data set COMBINE?
Assume today is Tuesday, July 23, 2002. Which one of the following statements submitted at the beginning of a SAS session assigns the value Tuesday, July 23,2002 to the macro variable START?
The following SAS program is submitted:%macro test(var);%let jobs = BLACKSMITH WORDSMITH SWORDSMITH;%let type = %index(&jobs,&var);%mend;%test(SMITH)Which one of the following is the resulting value of the macro variable TYPE?