Weekend Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: xmas50

SAS Institute A00-215 - SAS Certified Associate: Programming Fundamentals Using SAS 9.4

Page: 3 / 3
Total 78 questions

What is the result of submitting the program below?

proc contents data=revenue;

run;

A.

a report showing the descriptor portion of the REVENUE data set

B.

a report showing the properties of the REVENUE variable

C.

a report showing the values of the REVENUE variable

D.

a report showing the data portion of the REVENUE data set

Which program generates the PROC MEANS report below?

A.

proc means data=sashelp.class nodec;

class Age; run;

B.

proc means data=sashelp. class;

group Age;

run;

C.

proc means data=sashelp. class;

by Age;

run;

D.

proc means data=sashelp. class maxdec=0;

var Age;

run;

Given the input data sets EMPLOYEES and DONATIONS, and the output data set NODONATIONS below:

A.

data nodonations;

merge employees (in-inE) donations (in=inD);

by employee_id;

if inE=0 and inD-0;

run;

B.

data nodonations;

merge employees (in-inE) donations (in=inD);

by employee_id;

run;

C.

data nodonations;

merge employees (in-inE) donations (in=inD);

by employee_id;

if inE=1 and inD-0;

run;

D.

data nodonations;

merge employees (in-inE) donations (in=inD);

by employee_id;

if inE=1 and inD-1;

run;