Given the following IF/THEN statement:If Age NE 16 and Age NE 15 then Group=1;Which assignment statement for variable Group is functionally equivalent to the original statement used in the above data step?
Given the SAS data set SASDATA TWO:SASDATA TWO -X Y --- --5 23 15 6The following SAS program is submitted:data sasuser.one two sasdata.three;set sasdata two;if x = 5 then output sasuser.one;else output sasdata two;run;What is the result?
Given the SAS data set WORK.ONE:And the SAS data set WORK.TWO:The following program is submitted:What is the first observation in the SAS data set WORK.BOTH?
The following SAS program is submitted:footnote1 Sales Report for Last Month;footnote2 Selected Products Only;footnote3 All Regions;footnote4 All Figures in Thousands of Dollars;proc print data = sasuser.shoes;footnote2 All Products;run;Which footnote(s) is/are displayed in the report?
The following SAS program is submitted:data WORK.DATE_INFO;Day="01" ;Yr=1960 ;X=mdy(Day,01,Yr) ;run;What is the value of the variable X?
The following SAS program is submitted:data WORK.COMPRESS;ID = "˜1968 05-10 567';NewID = compress (ID, "-");run;What will the value of NewID be in the WORK.COMPRESS data set?