SAS Institute A00-282 SAS Certified Professional – Clinical Trials Programming Using SAS 9.4 Online Training
SAS Institute A00-282 Online Training
The questions for A00-282 were last updated at Feb 10,2025.
- Exam Code: A00-282
- Exam Name: SAS Certified Professional - Clinical Trials Programming Using SAS 9.4
- Certification Provider: SAS Institute
- Latest update: Feb 10,2025
Given the SAS data set WORK.BP
What is the result?
- A . WORK.HIGHBP has 1 observation
WORK.NORMBP has 1 observation
WORK.INVESTBP has 3 observations - B . WORK.HIGHBP has 1 observation
WORK.NORMBP has 1 observation
WORK.INVESTBP has 4 observations - C . WORK.HIGHBP has 1 observation
WORK.NORMBP has 1 observation
WORK.INVESTBP has 2 observations - D . WORK.HIGHBP has 2 observations
WORK.NORMBP has 2 observations
WORK.INVESTBP has 3 observations
This question will ask you to provide a line of missing code. The following SAS program is submitted:
Which statement is required to produce this output?
- A . TABLES site*group /nocol;
- B . TABLES site*group /norow;
- C . TABLES site*group;
- D . TABLES site*group /nocol norow;
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
Given the following vital signs data: Baseline is defined as the last non-missing value prior to Day 1.
What is the value for the change from baseline for Week 1 for Subject 2?
- A . -23
- B . 11
- C . -11
- D . 23
This question will ask you to provide a line of missing code.
Given the following log entry:
Which line of code would produce the merge issue notes in the log?
- A . if indm ne indisp then output ‘MERGE ISSUE: ‘ subjid= indm= indisp=;
- B . if indm ne indisp then put ‘MERGE ISSUE: ‘ subjid= indm= indisp=;
- C . %if indm ne indisp %then %put ‘MERGE ISSUE: ‘ subjid= indm= indisp=;
- D . if indm ne indisp then put ‘MERGE ISSUE: ‘ _all_;
The following SAS program is submitted:
Which types of variables are DayofMonth, MonthofYear, and Year?
- A . DayofMonth, Year, and MonthofYear are character.
- B . DayofMonth, Year, and MonthofYear are numeric.
- C . DayofMonth and Year are numeric. MonthofYear is character
- D . DayofMonth, Year, and MonthofYear are date values
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;
Which OPTION displays all SAS language statements generated during macro execution?
- A . MPRINT
- B . MLOGIC
- C . MSTORED
- D . MRECALL
You are working with the VS data set that contains the variable Pulse.
Which PROC SGPLOT step will produce the graph shown below?
- A . proc sgplot data = Work.VS noautolegend;
density pulse;
vbarbasic pulse;
run; - B . proc sgplot data = Work.VS noautolegend;
density pulse;
histogram pulse;
run; - C . proc sgplot data = Work.VS noautolegend;
histogram pulse;
density pulse;
run; - D . proc sgplot data = Work.VS noautolegend;
vbarbasic pulse;
density pulse;
run;
In PROC REPORT, which usage creates a column in the report for each distinct formatted value of the variable listed in the DEFINE statement?
- A . ACROSS
- B . ANALYSIS
- C . DISPLAY
- D . GROUP