Category: SAS Institute >> A00-281
Which program will report all created output objects in the log?class TREAT; var RESULTS;run; Question: Which program will report all created output objects in the log? Options: proc ttest data=WORK.DATA1 ods=trace; ods trace on;...
You want 90% confidence limits for a binomial proportion from a one-way table with PROC FREQ. Which option must you add to the TABLES statement? Question: Which option must you add to the TABLES...
A Treatment-Emergent Adverse Event (TEAE) is commonly defined as any event that occurs on or after the date and time of: Question: A Treatment-Emergent Adverse Event (TEAE) is commonly defined as any event that...
The following SAS program is submitted: proc sort data=SASUSER.VISIT out=PSORT; by code descending date cost; run;Which statement is true regarding the submitted program? Question: Which statement is true regarding the submitted program? Options: The...
Which statement correctly creates a SAS date variable from a character variable? Question: Which statement correctly creates a SAS date variable from a character variable? Options: sasdate = input(chardate,date9.); sasdate = ‘chardate’d; sasdate =...
You have acquired an existing program from a coworker which uses a macro. It is not immediately clear to you what this macro is doing. Which OPTION can be used to put the SAS...
Which clause allows macro variable creation on a select statement in PROC SQL? Question: Which clause allows macro variable creation on a select statement in PROC SQL? Options: INTO SYMPUT AS %MACRQ Correct Answer...
Which statement will create a report footnote that identifies the date and time that the SAS program was executed? Question: Which statement will create a report footnote that identifies the date and time that...
You want to calculate the p-value of Fisher’s exact test for a 3Ãâ€â€3 table. Which option must you add to the TABLES statement of PROC FREQ? Question: Which option must you add to the...
Which option for PROC COMPARE will list all observations and variables found in only one of the two data sets being compared? Question: Which option for PROC COMPARE will list all observations and variables...