SAS Certified Clinical Trials Programmer Using SAS 9 (A00-280) - SASI Actual Exam Questions
Last updated on May 01, 2026
The following output is displayed: Which SAS program created this output?
proc freq data=WORK.TESTDATA; tables gender * answer / nocol norow nopercent; run;
proc freq data=WORK.TESTDATA; tables answer * gender / nocol norow nopercent; run;
proc freq data=WORK.TESTDATA; tables gender * answer / nocol norow nopercent missing; run;
proc freq data=WORK.TESTDATA; tables answer * gender / nocol norow nopercent missing; run;
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
Given the following data set DEMOG: Which selection below would be considered hard-coding?
if sexcd eq 1 then sex = "Male" ; else if sexcd eq 2 then sex = "Female" ;
if site eq 1 then sexcd = 2 ; else if site eq 2 then sexcd = 1 ;
if site eq 1 and sexcd ne 2 then check = 1 ; else if site eq 2 and sexcd ne 1 then check = 2 ;
birthdt = input(dob, mmddyy10.) ;
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
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?
intype=data
memtype=data
entrytype=data
include=data
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
The following SAS program is submitted: Which alternative program creates an equivalent BASE_BP data set?
proc sort data=VS (keep=usubjid vsstresn vstestcd) out=BASE_BP (drop=vstestcd); where vstestcd in('DIABP','SYSBP'); by usubjid; run;
data BASE_BP; set VS (keep=usubjid vsstresn); if vstestcd in('DIABP','SYSBP'); run;
proc sort data=VS (keep=usubjid vsstresn vstestcd) out=BASE_BP (drop=vstestcd); by usubjid; if vstestcd in('DIABP','SYSBP'); run;
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.
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.
General Data Structure (GDS)
Basic Data Structure (BDS)
Subject Level Analysis Data Set (ADSL)
Event Level Analysis Data Set (ADAE)
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.