Which one of the following SAS integrity constraint types ensures that a specific set or range of values are the only values in a variable?
Which one of the following options displays the value of a macro variable in the SAS log?
The following SAS ARRAY statement is submitted:array score{*} a4 - a10, a25 ;Which one of the following is the maximum number of elements stored?
When is it appropriate to create indexes on a SAS data set for efficient processing?
The following SAS program is submitted:options yearcutoff = 1950;%macro y2kopt(date);%if &date >= 14610 %then %do;options yearcutoff = 2000;%end;%else %do;options yearcutoff = 1900;%end;%mend;data _null_ ;date = "01jan2000"d;call symput("date",left(date));run;%y2kopt(&date)The SAS date for January 1, 2000 is 14610 and the SAS system option forYEARCUTOFF is set to 1920 prior to submitting the above program.Which one of the following is the value of YEARCUTOFF when the macro finishes execution?
Which one of the following is the purpose of the REUSE= YES option in a compressedSAS data set?