Spring Sale Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: pass65

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

Questions 4

Which PROC PRINT statement controls the order of the variables displayed in the report?

Options:

A.

KEEP

B.

DROP

C.

VAR

D.

SELECT

Buy Now
Questions 5

Given the data sets AMERICIAN NATIONAL and results in the data set BASEBALL shown below:

A00-215 Question 5

Which DATA step correctly creates the BASEBALL data set?

Options:

A.

data baseball;

set american (rename=(Team=TeamName)) national;

run;

B.

data baseball;

set american national;

run;

C.

data baseball;

set American (rename=(TeamName=Team)) national;

run;

D.

data baseball;

set national American;

run;

Buy Now
Questions 6

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 7

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

Options:

A.

Ods excel=’ c : \report. xlsx’ style=analysis;

B.

Ods excel workbook=’ report. xles’ analysis;

C.

Ods excel=’ c : \report. xlsx’ / analysis;

D.

Ods excel file =’c \report.xlsx’ styleanalysis;

Buy Now
Questions 8

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) ;

Buy Now
Questions 9

The sashelp. class data set has 19 observations.

Given the frequency information about the Age, shown below:

A00-215 Question 9

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

Buy Now
Questions 10

What is the result of submitting the program below?

proc contents data=revenue;

run;

Options:

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

Buy Now
Questions 11

Which PROC SORT statement specifies the sort variable?

Options:

A.

CLASS

B.

BY

C.

SORTVAR

D.

ORDERBY

Buy Now
Questions 12

How many statements are In the program shown below?

A00-215 Question 12

Options:

A.

9

B.

6

C.

10

D.

2

Buy Now
Questions 13

____ steps typically report, manage, or analyze data.

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

Options:

Buy Now
Questions 14

What is the default sort order of PROC SORT?

Options:

A.

Internal

B.

Ascending

C.

Formatted

D.

Descending

Buy Now
Questions 15

How many statements are in the following PROC PRINT step?

A00-215 Question 15

Options:

A.

5

B.

3

C.

4

D.

1

Buy Now
Questions 16

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 17

Given the display of the CITIES data set:

A00-215 Question 17

Which program creates the PROC PRINT report below?

A00-215 Question 17

Options:

A.

proc print data=cities showlabelse;

label Name= ' Employee Name

City =Birth City

B.

proc print data-cities label noobs;

label Name= ' Employee Name '

City= ' Birth City ' ;

run;

C.

proc print data=cities ;

Name= ' Employee Name ' ;

City= ' Birth City ' ;

run;

D.

options noobs labels;

proc print data=cities;

display Name= ' Employee Name*

city= ' Birth City ' ,

run;

Buy Now
Questions 18

Which statements read the input data set SASHELP. SHOES and create the output data set WORK. TOTAL?

Options:

A.

data sashalp.shoes;

out work.total;

B.

data sashelp.shoes;

output work.total;

C.

data work.total;

set sashelp.shoes;

D.

data out=work.total;

input sasholp.shoes

Buy Now
Questions 19

Which PROC IMPORT step correctly creates the MYDATA,SALES data set from the SALES.SCV file?

Options:

A.

proc import datafile=sales.csv dbms=csv

out= " mydata.sales " ;

run;

B.

proc import datafile= " sales.csv " dbms=csv

out=mydata. sales;

run;

C.

proc import data= " mydata. sales " dbms=csv

out= " mydata.sales " ;

run;

D.

proc import data=mydata.sales dbms=csv

out=mydata.sales;

run;

Buy Now
Questions 20

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 21

Given the code shown below:

A00-215 Question 21

What will be the format for MSRP in the RPOC PRINT output?

Options:

A.

There is a syntax error in the FORMAT statement in the PROC PRINT step.

B.

Comma12. 2

C.

Dollar10.

D.

Dollar12.

Buy Now
Questions 22

How does SAS display missing values?

Options:

A.

a period for missing numeric and a blank for missing character

B.

an N for missing numeric and C for missing character

C.

a blank for Doth numeric and character missing

D.

a blank for missing numeric and a $ for missing character

Buy Now
Questions 23

You submit a program and the SAS log is shown below:

A00-215 Question 23

Which statement is true regarding the submitted program?

Options:

A.

The error in the PROC SORT step caused the program to stop processing

B.

All three steps ran successfully

C.

The DATA step and PROC PRINT steps ran without errors.

D.

The PROC SORT and PROC PRINT steps failed.

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

PDF + Testing Engine

$63.52  $181.49

Testing Engine

$50.57  $144.49
buy now A00-215 testing engine

PDF (Q&A)

$43.57  $124.49
buy now A00-215 pdf