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

Note! Following A00-211 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

SAS Base Programming for SAS (r) 9 Questions and Answers

Question 1

The following SAS program is submitted:

data work.empsalary;

set work.people (in = inemp)

work.money (in = insal);

if insal and inemp;

run;

The SAS data set WORKPEOPLE has 5 observations, and the data set WORKMONEY has 7 observations. How many observations will the data set WORK.EMPSALARY contain?

Options:

A.

0

B.

5

C.

7

D.

12

Buy Now
Question 2

Which statement describes a characteristic of the SAS automatic variable _ERROR_?

Options:

A.

The _ERROR_ variable maintains a count of the number of data errors in a DATA step.

B.

The _ERROR_ variable is added to the program data vector and becomes part of the data set being created.

C.

The _ERROR_ variable can be used in expressions in the DATA step.

D.

The _ERROR_ variable contains the number of the observation that caused the data error.

Question 3

The following SAS program is submitted:

libname temp 'SAS-data-library';

data work.new;

set temp.jobs;

format newdate mmddyy10.;

qdate = qtr(newdate);

ddate = weekday(newdate);

run;

proc print data = work.new;

run;

The variable NEWDATE contains the SAS date value for April 15, 2000.

What output is produced if April 15, 2000 falls on a Saturday?

Options:

A.

Obs newdate qdate ddate1 APR152000 2 6

B.

Obs newdate qdate ddate1 04/15/2000 2 6

C.

Obs newdate qdate ddate1 APR152000 2 7

D.

Obs newdate qdate ddate1 04/15/2000 2 7