SAS Certified Clinical Trials Programmer Using SAS 9 Accelerated Version (A00-281) - SASI Exam Questions
Last updated on June 20, 2026
Which alternative program creates an equivalent BASE_BP data set? A.
run;
proc sort data=VS (keep=usubjid vsstresn vstestcd)
out=BASE_BP (drop=vstestcd);
where vstestcd in('DIABP','SYSBP');
by usubjid;
B.
data BASE_BP;
set VS (keep=usubjid vsstresn);
if vstestcd in('DIABP','SYSBP');
run;
C.
proc sort data=VS (keep=usubjid vsstresn vstestcd)
out=BASE_BP (drop=vstestcd);
by usubjid;
if vstestcd in('DIABP','SYSBP');
run;
D.
data BASE_BP (keep=usubjid vsstresn vstestcd);
set VS (drop=vstestcd);
if vstestcd in('DIABP','SYSBP');
run;
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
Which SAS system option adds the blue highlighted lines to the log?
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.

Which statement correctly identifies invalid values in the variable TRT, if only the values 'A', B', 'C are valid?
index(TRT, 'ABC') eq 0 then output;
find(TRT, 'ABC') eq 0 then output;
indexw(TRT, 'ABC') eq 0 then output;
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
If the value for the variable Subjcode is "WGT2", what is the value of the variable Description?
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.

Based on the concept of Last Observation Carried Forward, what will be the value for SCORE for the Week 12
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
Finish Practice?
Are you sure you want to finish? This will end your practice session.