Easter Sale 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: save70

Clinical Trials Programmer A00-280 Passing Score

Page: 3 / 4
Total 99 questions

Clinical Trials Programming Using SAS 9 Questions and Answers

Question 9

A SAS report procedure results in the log below.

What should you add to the PROC REPORT to address the blue note in this log?

Options:

A.

Use DEFINE statements with the WIDTH= option set large enough to print all values for each variable

B.

Specify COLWIDTH= option with a value large enough to print all values in the data

C.

Use DEFINE statements where FLOW is specified for each numeric variable

D.

Use a FORMAT statement with formats large enough to print all values for each numeric variable

Question 10

Given the following data set DEMOG:

Which selection below would be considered hard-coding?

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

Question 11

The following SAS program is submitted:

What is the value of the variable day when the data step completes?

Options:

A.

1

B.

6

C.

7

D.

8

Question 12

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;

Page: 3 / 4
Total 99 questions