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

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 # 4

Given the following SAS data set named WORK.INTERNAT:

WORK.INTERNAT

LOCATION SUM

USA 30

EUR 40

The following SAS program is submitted:

%let LOC = Usa;

proc sql;

select *

from internat

where location = "&Loc";

quit;

Which one of the following is the result when the above code is executed on the above data set?

A.

A report is generated with one destination.

B.

No report is generated as the case of the compared values is different.

C.

No report is generated as the case of the macro variable name is different.

D.

A report is generated with the two original observations as the where clause does not work.

Full Access
Question # 5

The following SAS program is submitted:

%let var = chicago, 1;

data a;

var = 'new york, 2';

newvar = %scan(&var,2,%str());

run;

Which one of the following explains why the program fails to execute?

A.

The %STR() is invalid syntax.

B.

The %SCAN function does not exist.

C.

The %SCAN function has too many arguments.

D.

The macro variable VAR does not get created properly.

Full Access
Question # 6

Which one of the following should be avoided when creating and using an SQL procedure view?

A.

using a HAVING clause

B.

using summary functions

C.

referencing a view multiple times in the same program

D.

creating views on tables whose structures remain constant

Full Access
Question # 7

What is generated as a result of submitting the RANUNI function with a seed of 123?

A.

A missing value because 123 is an invalid argument for the RANUNI function

B.

A different sequence of random numbers with each program execution

C.

A random number between 0 and 123

D.

A consistent sequence of random numbers with each program execution

Full Access
Question # 8

Which one of the following displays the definition of a stored SQL procedure view in the

SAS log?

A.

ECHOVIEW option

B.

EXPANDVIEW option

C.

VALIDATE VIEW statement

D.

DESCRIBE VIEW statement

Full Access
Go to page: