Labour Day Sale Limited Time 60% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 713PS592

A00-215 SAS Certified Associate: Programming Fundamentals Using SAS 9.4 Questions and Answers

Questions 4

Which LABEL statement has correct syntax?

Options:

A.

Label FName=’ First Name’ ;

LName =; Last Name‘ ;

B.

Label FName=’ First Name’

LName =’ Last Name‘ ;

C.

Label FName=’ First Name’ and

LName =’ Last Name‘ ;

D.

Label FName=’ First Name’ ,

LName =; Last Name‘ ;

Buy Now
Questions 5

Given the following SAS program:

A00-215 Question 5

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

Buy Now
Questions 6

What is the default byte size of a numeric variable?

Enter your numeric answer in the space above.

Options:

Buy Now
Questions 7

Which program generates the PROC MEANS report below?

A00-215 Question 7

Options:

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;

Buy Now
Questions 8

What step has correct syntax for the CONTENTS procedure?

Options:

A.

Proc contents file=sashelp .shoes;

Run;

B.

Proc contents lib=sashelp data=shoes;

Run;

C.

Proc contents data=sashelp.shoes;

Run;

D.

Proc contents sashelp. Shoes;

run;

Buy Now
Questions 9

Which step temporarily assign a format to the sales variable?

Options:

A.

Proc format;

Formatsales comma12.;

Run;

B.

Data sasuer. Shoes

Set sashelp,sheoes;

Format sales comma12.;

C.

Proc contents data=sashelp.shoes;

Format Sales comma12.;

Run;

D.

Proc print data= sashelp. Shoes

Format sales comma12.;

Run;

Buy Now
Questions 10

How many statements are In the program shown below?

A00-215 Question 10

Options:

A.

9

B.

6

C.

10

D.

2

Buy Now
Questions 11

Which SAS format displays a SAS date as 25JUN2019?

Options:

A.

ddMMMyy9.

B.

Date9.

C.

Ddmmmyyyy9.

D.

Dmy9.

Buy Now
Questions 12

The data set SASHELP. CARS contains information on different vehicles. How do you correctly write the observations with Type of 'SUV' to the suv data set and Type

of 'Sedan' to the sedans data set?

Options:

A.

data=SUV data=Sedans;

set sashelp.cars;

if Type = 'SUV' then output SUV;

else if Type = 'Sedan' then output Sedans;

run;

B.

data SUV Sedans;

set sashelp.cars;

if Type = 'SUV' then output SUV;

else if Type = 'Sedan' then output Sedans;

run;

C.

data SUV;

data Sedans;

set sashelp.cars;

if Type = SUV then output SUV;

else if Type = Sedan then output Sedans;

run;

D.

data= (SUV Sedans) ;

set sashelp.cars;

if Type = 'SUV' then output SUV;

else if Type = 'Sedan' then output Sedans;

run;

Buy Now
Questions 13

Given the input data set INVENTORY as shown below:

A00-215 Question 13

Two output data sets are desired, CHIPS and OTHERSNACKS.

* The CHIPS data set should only include QtySold, Price, and Product.

* The OTHERSNACKS data set should include QtySold, Price, product, and Type.

Which Data step creates the two desired output data sets

A00-215 Question 13

Options:

A.

data chips othersnacks;

set inventory;

if Type="chips" then do;

keep Qtysold Price Product;

output chips;

end;

else output othersnacks;

run;

B.

data chips (keep=QtySold Price Product) othersnacks;

set inventory;

if Type="chips" then output chips;

else output othersnacks;

run;

C.

data chips othersnacks;

set inventory;

if Type="chips" then output chips;

else output othersnacks;

keep QtySold Price Product;

run;

D.

data chips othersnacks;

set inventory (keep=QtySold Price Product) ;

if Type="chips" then output chips;

else output othersnacks;

run;

Buy Now
Questions 14

Which statement is true about SAS program syntax?

Options:

A.

Any statement that begins with an & is a comment and will not execute.

B.

Global statements (such as LIBNAME) need a RUN statement to execute.

C.

Character values in quotation marks are case sensitive.

D.

SAS cannot process steps with multiple statements on the same line.

Buy Now
Questions 15

Which statement is true about the DROP statement during the compilation phase of the DATA step?

Options:

A.

The DROP statement flags the variables in the Program Data Vector to be dropped at output.

B.

The DROP statement determines the order of the variables in the Program Data Vector

C.

Variables on the DROP statement are removed from the input data set.

D.

Variables on the DROP statement are not created in the Program Data Vector

Buy Now
Questions 16

Given the STUDENTS data set below:

A00-215 Question 16

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

Options:

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

Buy Now
Questions 17

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.

Buy Now
Questions 18

Which program assigns the library reference exlib to the CLASS. XLSX workbook and displays the CLASS_TEST worksheet?

Options:

A.

libname xlsx exlib "c:\class.xlsx";

proc print data=xlsx.class_test;

run;

B.

libname exlib xlsx "c:\class.xlsx";

proc print data=class_test.xlsx;

run;

C.

libname exlib xlsx "c:\class";

proc print data=exlib.class_test.xlsx;

run;

D.

libname exlib xlsx "c: \class.xlsx";

proc print data=exlib.class_test;

run;

Buy Now
Questions 19

Given the following assignment statement:

BirthDate = 15DEC2005’d;

Which statement is true?

Options:

A.

15DEC2005 'd is a character constant

B.

BirthDate is a numeric variable.

C.

The byte size of BirthDate is 9.

D.

The assignment statement contains a syntax error.

Buy Now
Questions 20

Which PROC MEANS program creates the report below?

A00-215 Question 20

Options:

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."

Buy Now
Questions 21

How many statements are in the following PROC PRINT step?

A00-215 Question 21

Options:

A.

5

B.

3

C.

4

D.

1

Buy Now
Questions 22

Given the following DATA step:

A00-215 Question 22

What is the value of average?

Enter your numeric answer in the space above.

Options:

Buy Now
Questions 23

Which PROC MEANS step generates the report below?

A00-215 Question 23

Options:

A.

proc means data=class mean std;

var Height Weight;

run;

B.

proc means data=class / mean std;

mean (Height, Weight) ;

std (Height, Weight) ;

run;

C.

proc means data=class;

var mean std;

run;

D.

proc means data=class;

options mean std;

keep Height Weight;

run;

Buy Now
Exam Code: A00-215
Exam Name: SAS Certified Associate: Programming Fundamentals Using SAS 9.4
Last Update: May 4, 2024
Questions: 78

PDF + Testing Engine

$66.4  $165.99

Testing Engine

$46  $114.99
buy now A00-215 testing engine

PDF (Q&A)

$42  $104.99
buy now A00-215 pdf