Official Bank 0/99

SAS Certified Clinical Trials Programmer Using SAS 9 (A00-280) - SASI Actual Exam Questions

Last updated on May 01, 2026

97% Exam Compliance
99 Total Questions
1
Question

The following output is displayed: Which SAS program created this output?

Question image
Options
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;

Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

2
Question

Given the following data set DEMOG: Which selection below would be considered hard-coding?

Question image
Options
A

if sexcd eq 1 then sex = "Male" ; else if sexcd eq 2 then sex = "Female" ;

B

if site eq 1 then sexcd = 2 ; else if site eq 2 then sexcd = 1 ;

C

if site eq 1 and sexcd ne 2 then check = 1 ; else if site eq 2 and sexcd ne 1 then check = 2 ;

D

birthdt = input(dob, mmddyy10.) ;

Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

3
Question

This question will ask you to provide a missing option. The following program is submitted to create a transport file for multiple data sets: Which option will limit the files that are copied to type data?

Question image
Options
A

intype=data

B

memtype=data

C

entrytype=data

D

include=data

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: Which alternative program creates an equivalent BASE_BP data set?

Question image
Options
A

proc sort data=VS (keep=usubjid vsstresn vstestcd) out=BASE_BP (drop=vstestcd); where vstestcd in('DIABP','SYSBP'); by usubjid; run;

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;

Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

5
Question

Identify the data structure with the following characteristics: • Contains one or more records per subject, per analysis parameter, and per analysis timepoint. • May be derived from findings, events, interventions and special-purpose SDTM domains, or other ADaM datasets. • A record can represent an observed, derived, or imputed value required for analysis.

Options
A

General Data Structure (GDS)

B

Basic Data Structure (BDS)

C

Subject Level Analysis Data Set (ADSL)

D

Event Level Analysis Data Set (ADAE)

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.