Pass the SAS Institute Programming Fundamentals A00-215 Questions and answers with CertsForce

Viewing page 2 out of 3 pages
Viewing questions 11-20 out of questions
Questions # 11:

Given the report shown below:

Question # 11

Which PROC PREQ step creates the frequency report?

Options:

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;


Expert Solution
Questions # 12:

Given the following DATA step:

Question # 12

What is the value of average?

Enter your numeric answer in the space above.


Expert Solution
Questions # 13:

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

Question # 13

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;


Expert Solution
Questions # 14:

Which statement is true about the SUM statement?

Options:

A.

The SUM statement includes an equal sign.


B.

Multiple accumulating variables can be created with one SUM statement.


C.

The SUM statement ignores missing values.


D.

By default, the accumulating variable is initialized to 1.


Expert Solution
Questions # 15:

What is the default byte size of a numeric variable?

Enter your numeric answer in the space above.


Expert Solution
Questions # 16:

Which two statements are true about data set options such as KEEP= and RENAME =? (Choose two.)

Options:

A.

The options must be placed in parentheses.


B.

The options are not allowed in PROC steps.


C.

The options can be used only on the output data set.


D.

The options are placed after the data set name.


Expert Solution
Questions # 17:

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


Expert Solution
Questions # 18:

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

Options:

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;


Expert Solution
Questions # 19:

Given the program shown below:

Question # 19

Given the partial PROC PRINT report below:

Question # 19

Why are the labels for msbp, MPG_city, and MPG_Highway NOT displaying in the PROC PRINT report^

Options:

A.

You must use the LABEL option on the PROC PRINT statement


B.

You must put the LABEL statement in the PROC PRINT step


C.

You must put the LABEL statement after the KEEP statement In the DATA stop


D.

You must use a single LABEL statement for each variable.


Expert Solution
Questions # 20:

____ steps typically report, manage, or analyze data.

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


Expert Solution
Viewing page 2 out of 3 pages
Viewing questions 11-20 out of questions