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

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

A00-211 Exam Dumps - SAS Base Programming for SAS (r) 9

Go to page:
Question # 4

The data set WORK.REALESTATE has the variable LocalFee with a format of 9. and a variable CountryFee with a format of 7.;

The following SAS program is submitted:

What are the formats of the variables LocalFee and CountryFee in the output data set?

A.

LocalFee has format of 9. and CountryFee has a format of percent7.2

B.

LocalFee has format of 9. and CountryFee has a format of 7.

C.

Both LocalFee and CountryFee have a format of percent7.2

D.

The data step fails execution; there is no format for LocalFee.

Full Access
Question # 5

The following SAS program is submitted:

proc print data = sasuser.houses;

run;

proc means data = sasuser.shoes;

run;

Which one of the following OPTIONS statements resets the page number to 1 for the second report?

A.

options pageno = 1;

B.

options pagenum = 1;

C.

options reset pageno = 1;

D.

options reset pagenum = 1;

Full Access
Question # 6

The SAS data set EMPLOYEE_INFO is listed below:

IDNumber Expenses

2542 100.00

3612 133.15

2198 234.34

2198 111.12

The following SAS program is submitted:

proc sort data = employee_info;

run;

Which one of the following BY statements completes the program and sorts the data sequentially by descending expense values within each descending IDNUMBER value?

A.

by descending IDNumber Expenses;

B.

by (IDNumber Expenses) descending;

C.

by IDNumber descending Expenses descending;

D.

by descending IDNumber descending Expenses;

Full Access
Question # 7

Which one of the following SAS system options prevents the page number from appearing on a report?

A.

NONUM

B.

NOPAGE

C.

NONUMBER

D.

NOPAGENUM

Full Access
Question # 8

This questions will ask you to provide two missing variable names.

The following SAS program is submitted:

data WORK.TOTAL;

set WORK.SALARY;

by Department Gender;

if First. then Payroll=0

Payroll+Wagerate;

if Last.;

run;

The SAS data set WORK.SALARY is currently ordered by Gender within Department. Which inserted code will accumulate subtotals for each Gender within Department?

A.

variable 1: Gender variable 2: Department

B.

variable 1: Gender variable 2: Gender

C.

variable 1: Department variable 2: Gender

D.

variable 1: Department variable 2: Department

Full Access
Go to page: