Given the following data at WORK DEMO:

Which SAS program prints only the first 5 males in this order from the data set?
A. proc sort data=WORK.DEMO out=out; by sex; run; proc print data= out (obs=5); run;
B. proc print data=WORK.DEMO(obs=5); where Sex='M'; run;
C. proc print data=WORK.DEMO(where=(sex='M')); where obs<=5; run;
D. proc sort data=WORK.DEMO out=out; by sex descending; run; proc print data= out (obs=5); run;
Which SAS program will apply the data set label 'Demographics' to the data set named DEMO?
A. data demo (label='Demographics'); set demo; run;
B. data demo; set demo (label='Demographics'); run;
C. data demo (label 'Demographics'); set demo; run;
D. data demo; set demo; label demo= 'Demographics'; run;
The following output is displayed: Which SAS program created this output?

A. proc freq data=WORK.TESTDATA; tables gender * answer / nocol norow nopercent; run;
B. proc freq data=WORK.TESTDATA; tables answer * gender / nocol norow nopercent; run;
C. proc freq data=WORK.TESTDATA; tables gender * answer / nocol norow nopercent missing; run;
D. proc freq data=WORK.TESTDATA; tables answer * gender / nocol norow nopercent missing; run;
Which option for PROC COMPARE will list all observations and variables found in only one of the two data sets being compared?
A. LISTALL
B. OUTALL
C. ALLOBS
D. OUTDIFF
Which validation technique involves two programmers writing separate programs to produce the same output, then comparing the result?
A. Independent Programming
B. Peer Matching
C. Identical Programming
D. Peer Review
Which clause allows macro variable creation on a select statement in PROC SQL?
A. INTO
B. SYMPUT
C. AS
D. %MACRO
This question will ask you to provide a missing option.
Given an existing work data set (DM), the following code is submitted:

A. MPRINT
B. SYMBOLGEN
C. MLOGIC
D. MRECALL
Which statement assigns the current date to the character variable CURRDT?
A. currdt="andsysdate.";
B. currdt="%sysdate.";
C. currdt="sysdate.";
D. currdt="#sysdate.";
Which statement will produce report output that can be opened in Microsoft Word?
A. ods rtf file='report.rtf';
B. ods doc file='report.doc';
C. ods type='word' file='report.doc';
D. ods rtf='report.rtf';
Identify the CDISC model with the following characteristics:
?XML-based content and format standard
?facilitates the archive and interchange of the metadata and data for clinical research
?provides an accurate audit trail that is 21 CRF Part II compliant
A. Analysis Data Model (ADaM)
B. Operational Data Model (ODM)
C. Study Data Tabulation Model (SDTM)
D. Trial Design Model (TDM)