Pre-Summer Special - Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: top65certs

Note! Following A00-280 Exam is Retired now. Please select the alternative replacement for your Exam Certification.

Verified By IT Certified Experts

CertsTopics.com Certified Safe Files

Up-To-Date Exam Study Material

99.5% High Success Pass Rate

100% Accurate Answers

Instant Downloads

Exam Questions And Answers PDF

Try Demo Before You Buy

Certification Exams with Helpful Questions And Answers

Clinical Trials Programming Using SAS 9 Questions and Answers

Question 1

Given the following demographic dataset:

Which program will generate a report where observations will appear in order by SITE SUBJECT and display column headers for each variable defined in the column statement?

Options:

A.

Proc Report ;

column site subject trt age gender race ;

define site/'Site', subject/'Subject',

trt/'Treatment', age/'Age', gender/'Gender',

race/'Race' ;

run;

B.

Proc Report ;

column site subject trt age gender race ;

define site, subject, trt, age, gender, race ;

by site subject ;

title 'Site Subject Treatment Age Gender Race' ;

run;

C.

Proc Report ;

column site subject trt age gender race ;

define site/order 'Site' ;

define subject/order 'Subject' ;

define trt/'Treatment' ;

define age/'Age' ;

define gender/'Gender' ;

define race/'Race' ;

run;

D.

Proc Report ;

column site subject trt age gender race ;

define site/order style(header)={'Site'} ;

define subject/order style(header)={'Subject'} ;

define trt/style(header)={'Treatment'} ;

define age/style(header)={'Age'} ;

define gender/style(header)={'Gender'} ;

define race/style(header)={'Race'} ;

run;

Buy Now
Question 2

This question will ask you to provide a line of missing code.

Which line of code would produce the blue notes in the log?

Options:

A.

if indm ne indisp then output 'MERGE ISSUE: ' subjid indm indisp ;

B.

if indm ne indisp then put 'MERGE ISSUE: ' subjid= indm= indisp=;

C.

%if indm ne indisp %then %put 'MERGE ISSUE: ' subjid= indm= indisp=;

D.

if indm ne indisp then put 'MERGE ISSUE: ' _all_ ;

Question 3

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