Free A00-212 Exam Braindumps (page: 4)

Page 3 of 47

Given the SAS data sets ONE and TWO:


The following SAS program is submitted:
Proc sql;
Select two.*,budget from one <insert JOIN operator here> two on one.year=two.year,
Quit;
The following output is desired:

Which JOIN operator completes the program and generates the desired output?

  1. FULL JOIN
  2. INNER JOIN
  3. LEFT JOIN
  4. RIGHT JOIN

Answer(s): A



Given the SAS data set SAUSER.HIGWAY:
SASUSER.HIGHWAY


The following SAS program is submitted:

%macro highway;
proc sql nonprint;
%let numgrp=6;
select distinct status into:group1-:group&numgrp from sasuser.highway;
quit;
%do i=1 %to &numgrp;
proc print data =sasuser.highway;
where status ="&&group&I";
run;
%end;
%mend;
%highway

How many reports are produced?

  1. 2
  2. 6
  3. 0
  4. 5

Answer(s): A



The following SAS program is submitted:

%let dept=prod;
%let prod=merchandise;

The following message is written to the SAS log:
The value is "merchandise"
Which SAS System option writes this message to the SAS log?

  1. %put the value is "&&&dept";
  2. %put the value is "&&&dept";
  3. %put the value is "&&&dept";
  4. %put the value is %quote (&&&dept);

Answer(s): A



The SAS data set WORK.TEMPDATA contains the variables FMTNAME, START and LABEL and it consists of 10 observations.

The following SAS program is submitted:
Proc format cntlin=wor.tempdata;
Run;

What is the result of submitting the FORMAT procedure step?

  1. It uses the WORK.TEMPDATA SAS data set as input to create the format
  2. All formats created will be stored in two WORK.TEMPDATA SAS data set
  3. An ERROR message is written to the SAS log because the program is incomplete
  4. NO formats are created in this step

Answer(s): A






Post your Comments and Discuss SAS Institute A00-212 exam with other Community members:

A00-212 Discussions & Posts