Official Bank 0/99

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

Last updated on May 01, 2026

97% Exam Compliance
99 Total Questions
1
Question

Which statement correctly adds a label to the data set?

Options
A

DATA two Label="Subjects having duplicate observations"; set one; run;

B

DATA two; Label="Subjects having duplicate observations"; set one; run;

C

DATA two; set one; Label dataset="Subjects having duplicate observations"; run;

D

DATA two(Label="Subjects having duplicate observations"); set one; run;

Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

2
Question

A Treatment-Emergent Adverse Event (TEAE) is commonly defined as any event that occurs on or after the date and time of:

Options
A

informed consent

B

baseline assessment

C

study enrollment

D

first dose of study drug

Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

3
Question

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?

Options
A

the number of rows to be read from the Excel file

B

the number of columns to be read from the Excel file

C

multiple value types within a single column

D

multiple value types within a single row

Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

4
Question

Given the following data at WORK DEMO: Which SAS program prints only the first 5 males in this order from the data set?

Question image
Options
A

proc sort data=WORK.DEMO out=out; by sex; run; proc print data= out (obs=5); run;

B

proc print data=WORK.DEMO(obs=5); where Sex='M'; run;

C

proc print data=WORK.DEMO(where=(sex='M')); where obs<=5; run;

D

proc sort data=WORK.DEMO out=out; by sex descending; run; proc print data= out (obs=5); run;

Discussion (0 comments)

to join the discussion

Community Discussion

No discussions yet. Be the first to ask!

5
Question

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).

Question image
Reveal Only
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.