Weekend Sale - Limited Time 60% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 575363r9

Welcome To DumpsPedia

A00-215 Sample Questions Answers

Questions 4

The data set Snacks contains three variables (productName, Flavor, and Price). Given the program shown below:

What is the type and length of SnackType?

Options:

A.

Numeric, 8

B.

Character, 7

C.

Character, 8

D.

Character, 5

Buy Now
Questions 5

The following program is summited:

The following report is created:

However, the desired report is shown below:

What change is needed to display the desired formatted values for the Answer varia

Options:

A.

Change the unformatted values on the VALUE statement to upper case letters

B.

Remove the comma located on the VALUE statement

C.

Add a period to the end of the format name on the VALUE statement.

D.

Remove the dollar sign located at the front of the format name

Buy Now
Questions 6

Which PROC MEANS step generates the report below?

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

How many statements are In the program shown below?

Options:

A.

9

B.

6

C.

10

D.

2

Buy Now
Questions 8

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 9

Which two data sets are permanent?

Options:

A.

New

B.

Mylib.new

C.

Work.new

D.

Temp.new

Buy Now
Questions 10

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 11

Which PROC SORT statement specifies the sort variable?

Options:

A.

CLASS

B.

BY

C.

SORTVAR

D.

ORDERBY

Buy Now
Questions 12

Given the input data sets EMPLOYEES and DONATIONS, and the output data set NODONATIONS below:

Options:

A.

data nodonations;

merge employees (in-inE) donations (in=inD);

by employee_id;

if inE=0 and inD-0;

run;

B.

data nodonations;

merge employees (in-inE) donations (in=inD);

by employee_id;

run;

C.

data nodonations;

merge employees (in-inE) donations (in=inD);

by employee_id;

if inE=1 and inD-0;

run;

D.

data nodonations;

merge employees (in-inE) donations (in=inD);

by employee_id;

if inE=1 and inD-1;

run;

Buy Now
Questions 13

Which sentence is true regarding the VALUE statement in the FORMAT procedure?

Options:

A.

The keyword UNKNOWN can be specified on the VALUE statement.

B.

Numeric format names in the VALUE statement must begin with a $ sign.

C.

The VALUE statement can create numeric and character formats.

D.

The VALUE statement uses the LIB= option to specify the location of the format.

Buy Now
Questions 14

Which program correctly subnets the SASHELP. BASEBALL data set to include only the players in the East Division with 75 or more hits?

Options:

A.

data bball;

set sashelp.baseball;

where Division and nHits in ('East' and 75+);

run;

B.

data bball;

set sashelp.baseball;

where Division = 'East';

where nHits >= 75;

run;

C.

data bball;

set sashelp.baseball;

where Division - 'East' or nHits >= 75;

run;

D.

data bball;

set sashelp.baseball;

where Division = 'East' and nHits >= 75;

run;

Buy Now
Questions 15

Which statement is true regarding a DATA step concatenation?

Options:

A.

Columns with the same name must be renamed.

B.

The length of variables is determined from the first data set listed on the SET statement.

C.

A DATA step concatenation can contain a maximum of two tables on the same SET statement.

D.

A DATA step concatenation combines the data horizontally.

Buy Now
Questions 16

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 17

____ steps typically report, manage, or analyze data.

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

Options:

Buy Now
Questions 18

Which option renames the variable Name to StudentName when reading the ClassRoster data set?

Options:

A.

set ClassRoster (rename (StudentName=Name ) ) ;

B set ClassRoster (rename (NamestudentName) ) ;

B.

set ClassRoster (renaiae=(Name=studentName) ) ;

C.

set ClassRoster (^name=(StudentName=Name));

Buy Now
Questions 19

Given the input data set WORK. GR_ANS with two character variables:

The following SAS program is submitted:

Which report is created?

A)

B)

C)

D)

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Buy Now
Questions 20

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

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 22

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 23

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
Exam Code: A00-215
Exam Name: SAS Certified Associate: Programming Fundamentals Using SAS 9.4
Last Update: May 11, 2024
Questions: 78
$64  $159.99
$48  $119.99
$40  $99.99
buy now A00-215