The following SAS program is submitted:data work.test;array agents{4} $ 12 sales1 - sales4;run;Which one of the following represents the variables that are contained in the output data set?
On which portion(s) of a SAS data set does the PRINT procedure report?
Which one of the following SAS procedures displays the data portion of a SAS data set?
The following SAS program is submitted:proc contents data = sasuser.airplanes;run;Which one of the following is produced as output?
A raw data file is listed below:--------10-------20-------30John McCloskey 35 71 -June Rosesette 10 43 -Tineke Jones 9 37 -The following SAS program is submitted using the raw data file as input: data work.homework; infile 'file-specification'; input name $ age height; if age LE 10; run;How many observations will the WORK.HOMEWORK data set contain?
The SASDATA.BANKS data set has five observations when the following SAS program is submitted: libname sasdata 'SAS-data-library'; data allobs; set sasdata.banks; capital=0; do year = 2000 to 2020 by 5; capital + ((capital+2000) * rate); output; end; run;How many observations will the ALLOBS data set contain?