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

Free Access SAS Institute A00-215 New Release

Page: 4 / 6
Total 78 questions

SAS Certified Associate: Programming Fundamentals Using SAS 9.4 Questions and Answers

Question 13

The sashelp. class data set has 19 observations.

Given the frequency information about the Age, shown below:

How many observations are written to output data set when the following code is submitted?

Options:

A.

preteen will have 7 observations and teen will have 19 observations

B.

preteen will have 7 observations and teen will have 12 observations

C.

preteen will have 26 observations and teen will have 31 observations

D.

preteen will have 10 observations and teen will have 9 observations

Question 14

Given the following SAS program:

What footnotes appear for the second PROC PRINY report?

Options:

A.

Created by HR

B.

Created by HR

C.

Draft - Do Not Distribute

Create by HR

D.

Draft –Do NOT Distribute

Question 15

What happens when you submit the code shown below?

data table1 table2;

set sashelp.shoes;

output;

run;

Options:

A.

The program does not run because there is no data set specified on the OUTPUT statement.

B.

Each observation in sashelp. shoes is written to both table1 and table2.

C.

Each observation is written twice to table1 and table2.

D.

Each observation in sashelp. shoes is written to table1 only.

Question 16

Which assignment statement uses the SUBSTR function to extract the four-digit year from the value of date?

data days;

date="02Apr2019";

insert-statement-here

run;

Options:

A.

year=substr (date, 7, 4) ;

B.

year=substr (date, 4, 6) ;

C.

year=substr (date, 6, 4) ;

O D) year=substr (date, 4, 7) ;

Page: 4 / 6
Total 78 questions