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

A00-281 Questions and Answers

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

A00-281 Questions and Answers

Question # 6

This question will ask you to provide a missing option.

Given an existing work data set (DM), the following code is submitted:

A.

MPRINT

B.

SYMBOLGEN

C.

MLOGIC

D.

MRECALL

Full Access
Question # 7

Which clause allows macro variable creation on a select statement in PROC SQL?

A.

INTO

B.

SYMPUT

C.

AS

D.

%MACRO

Full Access
Question # 8

Given the following log entry:

Which SAS system option adds the blue highlighted lines to the log?

A.

INFO

B.

MSGLEVEL=I

C.

INVALIDDATA='I'

D.

NOTES

Full Access
Question # 9

The following SAS program is submitted, but fails due to syntax errors.

What is the cause of the syntax errors?

A.

The keep= data set option should be (keep=MonthExp*).

B.

An array can only be referenced in a KEEP statement and not within a keep= data set option.

C.

An array cannot be referenced on a keep= data set option.

D.

The keep= data set option should be (keep=MonthExp).

Full Access
Question # 10

Which statement will create a report footnote that identifies the date and time that the SAS program was executed?

A.

footnote1 "Created on &sysdate9 &systime";

B.

footnote1 = "Created on &sysdate9 &systime";

C.

footnote1 'Created on &sysdate9 &systime';

D.

footnote1 = 'Created on &sysdate9 &systime';

Full Access
Question # 11

The following SAS program is submitted:

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

A.

1

B.

6

C.

7

D.

8

Full Access
Question # 12

This question will ask you to provide lines of missing code.

Given the following SCORE data set:

Variable LOCF contains the imputed score that would replace the missing SCORE value (based on last observation carried forward method). Which SAS statements complete the program?

A.

LOCF = lag(score) ;

if first.subject then LOCF = . ;

if score ^= . then LOCF = score ;

B.

if first.subject then LOCF = . ;

if score = . then LOCF = lag(score) ;

C.

retain LOCF ;

if first.subject then LOCF = . ;

if score ^= . then LOCF = score ;

D.

retain score ;

if first.subject then LOCF = . ;

if score ^= . then LOCF = score ;

Full Access
Question # 13

Where would you store a value collected on a case report form but not defined in an SDTM domain?

A.

RELREC

B.

DM

C.

SUPPQUAL

D.

SC

Full Access
Question # 14

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

The following SAS program is submitted:

In the space below, enter the statement that completes the program correctly (Case is ignored. Do not add leading or trailing spaces to your answer.).

Full Access