The following SAS program is submitted and reads 100 records from a raw data file: data work.total; infile 'file-specification' end = eof; input name $ salary; totsal + salary; run;Which one of the following IF statements writes the last observation to the output data set?
The following SAS program is submitted:libname rawdata1 'location of SAS data library';filename rawdata2 'location of raw data file';data work.testdata;infileinput sales1 sales2;run;Which one of the following is needed to complete the program correctly?
The following SAS program is submitted:proc print data = sasuser.houses;run;proc means data = sasuser.shoes;run;Which one of the following OPTIONS statements resets the page number to 1 for the second report?
Which one of the following is true of the SUM statement in a SAS DATA step program?
When the following SAS program is submitted, the data set SASDATA.PRDSALES contains 5000 observations: libname sasdata 'SAS-data-library'; options obs = 500; proc print data = sasdata.prdsales (firstobs = 100); run; options obs = max; proc means data = sasdata.prdsales (firstobs = 500); run;How many observations are processed by each procedure?
The contents of the raw data file AMOUNT are listed below:--------10-------20-------30$1,234The following SAS program is submitted:data test;infile 'amount';input @1 salary 6.;if _error_ then description = 'Problems';else description = 'No Problems';run;Which one of the following is the value of the DESCRIPTION variable?