Certbus > SAS Institute > SAS Institute Certifications > A00-212 > A00-212 Online Practice Questions and Answers

A00-212 Online Practice Questions and Answers

Questions 4

The SAS set WORK CHECK has an index on the variable Code and the following SAS program is submitted.

proc sort data=WORK.CHECK;

by Code;

run;

What describes the result of submitting SAS program?

A. The index on Code is updates

B. The sort does not execute

C. The index on Code is deleted

D. The index on the Code unaffected

Browse 184 Q&As
Questions 5

Which one of the following techniques concatenates data in SAS?

A. the APPEND procedure

B. the DATA step with a MERGE statement

C. the DATA step with a COMBINE statement

D. the INTERSECT operator in the SQL procedure

Browse 184 Q&As
Questions 6

The following SAS program is submitted:

data new;

do i=1,2,3

nextfile=compress('March' || |);

infile abc filevar=nextfile

end=eof;

do until (eof);

input dept $sales;

end;

run;

What is the purpose of the FILEVAR=option on the INFILE statement?

A. It names the variable NEXTFILE, whose value is output to the SAS data set NEW

B. It names the variable NEXTFILE, whose values point to an aggregate storage location

C. It names the variable NEXTFILE, whose value is a SAS file reference

D. It names the variable NEXTFILE, whose change in value causes in INFILE statement to open a new input file

Browse 184 Q&As
Questions 7

The following SAS program is submitted:

proc sql;

select *

from dictionary.tables;

quit;

Which one of the following is reported?

A. metadata on all tables in all libraries

B. metadata on all tables in the WORK library only

C. metadata on all tables in the SASUSER library only

D. metadata on all tables in the DICTIONARY library only

Browse 184 Q&As
Questions 8

Given the data set SASHELP.CLASS:

SASHELP.CLASS

NAME AGE

Mary 15

Philip 16

Robert 12

Ronald 15

The following SAS program is submitted:

%let value = Philip;

proc print data = sashelp.class;

run;

Which WHERE statement successfully completes the program and procedures a report?

A. Where upcase(name)=%upcase(andvalue);

B. Where upcase(name)="upcase(andvalue)";

C. Where upcase(name)=upcase(andvalue);

D. Where upcase(name)="%upcase(andvalue)";

Browse 184 Q&As
Questions 9

The following SAS program is submitted:

%let first = yourname;

%let last = first;

%put andandandlast;

Which one of the following is the result in the log of the %PUT statement?

A. first

B. andfirst

C. yourname

D. andyourname

Browse 184 Q&As
Questions 10

Text is sent to the SAS compiler as a result of macro execution. Which one of the following SAS system options writes that text to the log?

A. MPRINT

B. MLOGIC

C. MSOURCE

D. SOURCE2

Browse 184 Q&As
Questions 11

The SAS data set WORK.TEMPDATA contains the variables FMTNAME, START and The following SAS program is submitted:

Proc format cntlin=wor.tempdata;

Run;

What is the result of submitting the FORMAT procedure step?

A. It uses the WORK.TEMPDATA SAS data set as input to create the format

B. All formats created will be stored in two WORK.TEMPDATA SAS data set

C. An ERROR message is written to the SAS log because the program is incomplete

D. NO formats are created in this step

Browse 184 Q&As
Exam Code: A00-212
Exam Name: SAS Advanced Programming Exam for SAS 9
Last Update: Mar 19, 2025
Questions: 184 Q&As

PDF

$49.99

VCE

$55.99

PDF + VCE

$65.99