New Year Special Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: scxmas70

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

A00-212 Exam Dumps - SAS Advanced Programming

Go to page:
Question # 9

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

The following SAS program submitted:

Which segment of code will successfully run an in-line view?

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Full Access
Question # 10

Given the data set shown in the left, the SAS program on the right is submitted.

Which program will result in the identical report?

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Full Access
Question # 11

This item will ask you to provide a segment of missing code.

Given the input data set shown on the left and the output data set shown on the right:

In the text below, enter the code that will complete the program to produce the output set shown above on the right.

Case is ignored and standard SAS syntax rules apply.

Full Access
Question # 12

When is it appropriate to create indexes on a SAS data set for efficient processing?

A.

if small subsets of data are often retrieved

B.

if the key variable has very few unique values

C.

if the data are often used for BY group processing

D.

if the SAS data set file page count is less than three pages

Full Access
Question # 13

Given the unsorted data set WORK.ORDERS

The following three programs are submitted:

Which program will create a list of unique Customer_ID values in the WORK.ORDERS data set?

A.

Only programs 2 and 3

B.

Only programs 1 and 2

C.

Programs 1, 2, and 3

D.

Only programs 1and 2

Full Access
Question # 14

Given the SAS data set ONE:

ONE

REP COST

SMITH 200

SMITH 400

JONES 100

SMITH 600

JONES 100

The following SAS program is submitted:

Proc sql;

Select rep, avg(cost) as AVERAGE

From one

Group by rep

quit;

The following output is desired:

Which SQL procedure clause completes the program and generates the desired output?

A.

having avg(cost) < select avg(cost) from one);

B.

Having avg(cost)>(select avg(cost) from one);

C.

Where avg(cost)>(select avg(cost) from one);

D.

Where calculated average > (select avg(cost) from one);

Full Access
Question # 15

Given the SAS data set ONE:

ONE

NUM VAR

1 A

2 B

3 C

Which SQL procedure program deletes the data set ONE?

A.

proc sql;

Drop table one;

Quit;

B.

proc sql;

Remove table one;

Quit;

C.

proc sql;

Delete table one;

Quit;

D.

proc sql;

Delete from one;

Quit;

Full Access
Question # 16

Given the following SAS data set ONE:

ONE

DIVISION SALES

A 1234

A 3654

B 5678

The following SAS program is submitted:

data _null_;

set one;

by division;

if first.division then

call symput('mfirst',sales);

if last.division then

call symput('mlast',sales);

run;

Which one of the following is the value of the macro variable MFIRST when the above program finishes execution?

A.

null

B.

1234

C.

3654

D.

5678

Full Access
Go to page: