Practice Free A00-282 Exam Online Questions
The following SAS program is submitted, but fails due to syntax errors.
What is the cause of the syntax errors?
- A . The keep= data set option should be (keep=MonthExp*).
- B . An array can only be referenced in a KEEP statement and not within a keep= data set option.
- C . An array cannot be referenced on a keep= data set option.
- D . The keep= data set option should be (keep=MonthExp).
A report that you are working on will require the following header lines:
Which code adds the second line of the header "Adverse Events"?
- A . header2 ‘Adverse Events’;
- B . header2 = ‘Adverse Events’;
- C . title2 = ‘Adverse Events’;
- D . title2 ‘Adverse Events’;
This question will ask you to provide a line of missing code.
Given the following demography (DM) data set sorted by site with character variables SUBJID, SITE, SEX, RACE and numeric variables ENROLLDAT and DOB:
The following SAS program is submitted:
%macro p_demog(bylist, varlist, statlist=);
proc sort data=derived.dm out=dm;
by &bylist;
proc means data=dm;
by &bylist;
var &varlist;
output out=stats &statlist;
run;
%mend p_demog;
Which call to the p_demog macro provides only the MEAN of AGE by SEX into the output dataset STATS?
- A . %p_demog(sex age statlist=%str(mean=mymeanvar))
- B . %p_demog(statlist=%str(mean=mymeanvar), sex, age)
- C . %p_demog(sex, age, statlist=%str(mean=mymeanvar))
- D . %p_demog(statlist=%str(mean=mymeanvar), sex, varlist=age)
Study day is defined as DCMDATE minus RFSTDTC +1
Which statement will compute the study day correctly without producing notes for missing values in the log?
- A . STUDYDAY=DCMDATE-RFSTDTC+1;
- B . STUDYDAY=input(DCMDATE,yymmdd8.)-input(RFSTDTC,date9.)+1;
- C . If RFSTDTC^=” and length(DCMDATE)=8 then STUDYDAY=input(DCMDATE,yymmdd8.)-input(RFSTDTC,date9.)+1;
- D . If RFSTDTC^=” and length(DCMDATE)=8 then STUDYDAY=input(DCMDATE,date9.)- input(RFSTDTC,yymmdd8.)+1;
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;
Which statement will create a report footnote that identifies the date and time that the SAS program was executed?
- A . footnote1 "Created on &sysdate9 &systime";
- B . footnote1 = "Created on &sysdate9 &systime";
- C . footnote1 ‘Created on &sysdate9 &systime’;
- D . footnote1 = ‘Created on &sysdate9 &systime’;
Which two SDTM domains store information for the experimental design of the trial?
(Choose two.)
- A . TA
- B . TE
- C . TD
- D . TV
Vital Signs are a component of which SDTM class?
- A . Special Purpose
- B . Events
- C . Interventions
- D . Findings
Given the following SCORE data set:
Based on the concept of Last Observation Carried Forward, what will be the value for SCORE for the Week 12 –
- A . 157
- B . 152
- C . missing
- D . 153
Given the file sites.csv:
Which option would you need to add to the INFILE statement to clear the notes from this log?
- A . firstobs=2
- B . missover
- C . lrecl=2
- D . start=2