Free A00-212 Exam Braindumps (page: 16)

Page 15 of 47

The following SAS program is submitted:

<insert statement here>;
%let development = ontime;
proc print data = sasuser.highway;
title "For &dept";
title2 "This project was completed &development";
run;

Which one of the following statements completes the above and resolves title1 to "For research&development"?

  1. %let dept = %str(research&development);
  2. %let dept = %str(research%&development);
  3. %let dept = %nrstr(research&development);
  4. %let dept = %nrstr(research%&development);

Answer(s): C



Which one of the following options controls the pagesize of a SAS data set?

  1. SIZE=
  2. BUFNO=
  3. BUFSIZE=
  4. PAGESIZE=

Answer(s): C



Given the following SAS data set ONE: ONE
ONE
REP COST
SMITH 200
SMITH 400
JONES 100
SMITH 600
JONES 100
JONES 200
JONES 400
SMITH 800
JONES 100
JONES 300
The following SAS program is submitted:
proc sql;
select rep, avg(cost) as AVERAGE
from one
group by rep
having avg(cost) > (select avg(cost) from one);
quit;

Which one of the following reports is generated?

  1. REP AVERAGE JONES 200
  2. REP AVERAGE JONES 320
  3. REP AVERAGE SMITH 320
  4. REP AVERAGE SMITH 500

Answer(s): D



The following SAS program is submitted:

proc sort data = sales tagsort;
by month year;
run;

Which of the following resource(s) is the TAGSORT option reducing?

  1. I/O usage only
  2. CPU usage only
  3. I/O and CPU usage
  4. temporary disk usage

Answer(s): D






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

A00-212 Discussions & Posts