Labour Day Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: geek65

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

Questions 4

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 5

Given the partial report shown below:

Which step will produce this report?

Options:

A.

proc freq data=sashelp. shoes order=freq;

tables region*product / list;

run;

B.

proc freq data=sashelp. shoes;

tables region product / list;

run;

C.

proc freq data=sashelp. shoes order=freq;

tables region product / crosslist;

run;

D.

proc freq data=sashelp. shoes;

tables region*product / crosslist;

run;

Buy Now
Questions 6

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

Options:

A.

N

B.

_N_

C.

_Obs_

D.

Obs

Buy Now
Questions 7

Which LIBNAME statement has the correct syntax for accessing SAS data sets?

Options:

A.

libname 'c:\sas\data' mydata;

B.

libname mydata 'c:\sas\data';

C.

libname mydata='c:\sas\data';

D.

libname 'c:\sas\data'=mydata;

Buy Now
Questions 8

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 9

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

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 10

Which code uses the correct syntax to conditionally create the two variables age-Cat and account?

Options:

A.

if age<13 do then;

age_Cat='Pre-teen';

account='No Social Media Allowed';

end;

B.

if age<13 then do;

age_Cat-'Pre-teen';

account-'No Social Media';

end;

C.

if age<13 then

age_Cat-' Pre-teen'

account='No Social Media Allowed';

end;

D.

if age<13 do;

age_Cat-' Pre-teen';

account='No Social Media Allowed';

end;

Buy Now
Questions 11

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 12

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

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
Questions 13

Given the display of the CITIES data set:

Which program creates the PROC PRINT report below?

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 14

Given the data set NAMES:

Which PROC SORT program creates the NAMES data set shown below?

Options:

A.

proc sort data=Names;

by Name;

run;

B.

proc sort data=Names;

orderby Name;

run;

C.

proc sort data=Names;

by Age;

run;

D.

proc sort data=Names;

orderby Age;

run;

Buy Now
Questions 15

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

Options:

A.

CLASS

B.

GROUP

C.

SUMBY

D.

VAR

Buy Now
Questions 16

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 17

Which two correctly create a SAS date value? (Choose two.)

Options:

A.

"10/19/2019"d

B.

mdy (10, 19, 2019)

C.

"190ct2019"d

D.

mdy (19, Oct, 2019)

Buy Now
Questions 18

Given the following DATA step:

What is the value of average?

Enter your numeric answer in the space above.

Options:

Buy Now
Questions 19

Given the STUDENTS data set below:

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 20

Which SAS format displays a SAS date as 25JUN2019?

Options:

A.

ddMMMyy9.

B.

Date9.

C.

Ddmmmyyyy9.

D.

Dmy9.

Buy Now
Questions 21

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 22

Which two data sets are permanent?

Options:

A.

New

B.

Mylib.new

C.

Work.new

D.

Temp.new

Buy Now
Questions 23

What type of error does NOT produce the expected results and does NOT generate errors or warnings in the log?

Options:

A.

Syntax error

B.

Logic error

C.

Special error

D.

Data error

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

A00-215 PDF

$28  $80
A00-215 Engine

A00-215 Testing Engine

$33.25  $95
A00-215 PDF + Engine

A00-215 PDF + Testing Engine

$45.5  $130