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

Pass A00-281 Exam Guide

Page: 2 / 4
Total 99 questions

Clinical Trials Programming Using SAS 9 – Accelerated Version Questions and Answers

Question 5

You have acquired an existing program from a coworker which uses a macro. It is not immediately clear to you what this macro is doing. Which OPTION can be used to put the SAS statements generated by the macro execution into the LOG?

Options:

A.

MPRINT

B.

SYMBOLGEN

C.

MLOGIC

D.

MRECALL

Question 6

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

The following SAS program is submitted:

Which statement is required to produce this output?

Options:

A.

TABLES site*group /nocol;

B.

TABLES site*group /norow;

C.

TABLES site*group;

D.

TABLES site*group /nocol norow;D. TABLES site*group /nocol norow;

Question 7

Which name is a valid SAS V5 variable name?

Options:

A.

_AESTDTC

B.

AESTARTDTC

C.

AE-STDTC

D.

AE_START_DTC

Question 8

Given the following data at WORK DEMO:

Which SAS program prints only the first 5 males in this order from the data set?

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;

Page: 2 / 4
Total 99 questions