Labour Day - Special 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70dumps

A00-215 Questions and Answers

Question # 6

Given the STUDENTS data set below:

What will be the values for First. State and Last. State for Ellen's observation?

A.

First. State=0 and Last. State=1

B.

First. State=0 and Last.State=0

C.

First. State=1 and Last. State=1

D.

First. State=1 and Last.State=0

Full Access
Question # 7

Which iterative DO statement is invalid?

A.

Do 100 to 1200 by 100;

B.

Do num = 1.1 to 1.9 by 0.1;

C.

Do year = 2000 to 2016 by 2;

D.

Do reverse = 10 to 1 by -1;

Full Access
Question # 8

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;

Full Access
Question # 9

____ steps typically report, manage, or analyze data.

Enter your answer in the space above. Case is ignored.

Full Access
Question # 10

Given the following SAS program:

What footnotes appear for the second PROC PRINY report?

A.

Created by HR

B.

Created by HR

C.

Draft - Do Not Distribute

Create by HR

D.

Draft –Do NOT Distribute

Full Access
Question # 11

Given the report shown below:

Which PROC PREQ step creates the frequency report?

A.

proc freq data= cars;

tables make drivetrain;

run;

B.

proc freq data= cars;

tables make *drivetrain;

run;

C.

proc freq data- cars;

tables drivetrain make;

run;

D.

proc freq data- cars;

tables drivetrain* make;

run;

Full Access
Question # 12

What happens when you submit the code shown below?

data table1 table2;

set sashelp.shoes;

output;

run;

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.

Full Access
Question # 13

Which ODS EXCEL statement correctly creates an Excel workbook using the ANALYSIS style?

A.

ods excel workbook='c:\report.xlsx' / analysis;

B.

ods excel 'c:\report.xlsx' / analysis;

C.

ods excel='c: \report.xlsx' style=analysis;

D.

ods excel file='c:\report.xlsx' style=analysis;

Full Access
Question # 14

Which PROC MEANS program creates the report below?

A.

proc means data-sashelp. shoes sum mean;

var Sales;

Class Product;

run;

B.

proc means data=sashelp. 'shoes

var Sale;

group Product;

run/

C.

Pror moans data-uashelp . shoes sum mean nobe;

by sales;

class product

D.

proc means data-esea= ashelp. shoes.

sum Salad;

mean Sales;

by product;

run."

Full Access
Question # 15

Given the program below:

Why does the program fail?

A.

You must use two different DATA statements for HEIGHT1 and HEIGHT2

B.

You cannot output to different data sets

C.

You must include the data set height2 in the DATA statement

D.

You cannot use numbers in data set names.

Full Access
Question # 16

When the following code is submitted, execution fails.

Why does the execution fail?

A.

Multiple executable statements are not allowed in the DO block.

B.

The OUTPUT statement is not allowed in the DO block.

C.

There are two unclosed DO block.

D.

The conditional logic expressions fail for the DO block

Full Access
Question # 17

What is the default sort order of PROC SORT?

A.

Internal

B.

Ascending

C.

Formatted

D.

Descending

Full Access
Question # 18

Which PROC PRINT step correctly displays only the first 10 observations in the data set?

A.

proc print data=sashelp.class(obs=l10);

run;

B.

proc print data=sashelp.class;

obs=10;

run;

C.

proc print data=sashelp.class obs=10;

run;

D.

proc print data=sashelp.class (oba«'10' )

; run;

Full Access
Question # 19

Which PROC MEANS statements specifies variables to group the data before calculating statistics?

A.

CLASS

B.

GROUP

C.

SUMBY

D.

VAR

Full Access
Question # 20

Which PROC SORT statement specifies the sort variable?

A.

CLASS

B.

BY

C.

SORTVAR

D.

ORDERBY

Full Access
Question # 21

What is the default byte size of a numeric variable?

Enter your numeric answer in the space above.

Full Access
Question # 22

Which statement is true regarding variable names?

A.

Variable names are case sensitive.

B.

Variable names are from 1 to 32 characters in length.

C.

Variable names are optional when you create a data set

D.

Variable names can start with a number or an underscore

Full Access
Question # 23

Which variable in the Program Data Vector represents the number of times the Data step has iterated?

A.

N

B.

_N_

C.

_Obs_

D.

Obs

Full Access