Official Bank 0/99

SAS Certified Clinical Trials Programmer Using SAS 9 Accelerated Version (A00-281) - SASI Exam Questions

Last updated on June 20, 2026

97% Exam Compliance
99 Total Questions
1
Question
The following SAS program is submitted:

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;
Reveal Only
Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

2
Question
Given the following log entry:

Which SAS system option adds the blue highlighted lines to the log?
Options
A INVALIDDATA='I'
B MSGLEVEL=I
C NOTES
D INFO
Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

3
Question
Given the following SAS program:

Exhibit

Which statement correctly identifies invalid values in the variable TRT, if only the values 'A', B', 'C are valid?
Options
A if
B if
C if indexc(TRT, 'ABC') eq 0 then output;
index(TRT, 'ABC') eq 0 then output;
find(TRT, 'ABC') eq 0 then output;
indexw(TRT, 'ABC') eq 0 then output;
D if
Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

4
Question
The following SAS program is submitted:
If the value for the variable Subjcode is "WGT2", what is the value of the variable Description?
Options
A Unknown
B Over
C Wgt2
D missing character value
Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

5
Question
Given the following SCORE data set:

Exhibit

Based on the concept of Last Observation Carried Forward, what will be the value for SCORE for the Week 12
Options
A missing
B 152
C 151
D 157
Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

Finish Practice?

Are you sure you want to finish? This will end your practice session.