SAS Certified Clinical Trials Programmer Using SAS 9 Accelerated Version (A00-281) - SASI Actual Exam Questions
Last updated on May 01, 2026
Which statement correctly adds a label to the data set?
DATA two Label="Subjects having duplicate observations"; set one; run;
DATA two; Label="Subjects having duplicate observations"; set one; run;
DATA two; set one; Label dataset="Subjects having duplicate observations"; run;
DATA two(Label="Subjects having duplicate observations"); set one; run;
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
A Treatment-Emergent Adverse Event (TEAE) is commonly defined as any event that occurs on or after the date and time of:
informed consent
baseline assessment
study enrollment
first dose of study drug
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
You have been asked to import an Excel spreadsheet. What will lead to substantial differences between the original Excel spreadsheet and the resulting SAS data set?
the number of rows to be read from the Excel file
the number of columns to be read from the Excel file
multiple value types within a single column
multiple value types within a single row
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 at WORK DEMO: Which SAS program prints only the first 5 males in this order from the data set?
proc sort data=WORK.DEMO out=out; by sex; run; proc print data= out (obs=5); run;
proc print data=WORK.DEMO(obs=5); where Sex='M'; run;
proc print data=WORK.DEMO(where=(sex='M')); where obs<=5; run;
proc sort data=WORK.DEMO out=out; by sex descending; run; proc print data= out (obs=5); run;
to join the discussion
No discussions yet. Be the first to ask!
Delete Comment
Are you sure? This action cannot be undone.
CORRECT TEXT This question will ask you to provide a line of missing code. You want to present a column header that contains breaks within the header as indicated below. In the space below, enter the option that completes the program (Case is ignored. Do not add leading or trailing spaces to your answer).
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.