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

SAS Institute A00-215 - SAS Certified Associate: Programming Fundamentals Using SAS 9.4

Page: 1 / 3
Total 78 questions

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

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

Given the SAS data set WORK PRODUCTS:

How many variables does the WORK REVENUE data set contains?

A.

4

B.

5

C.

2

D.

3

Given the program below:

Why does the program fail?

A.

You must use two different DATA statements for HEIGHT1 and HEIGHT2

B.

You cannot output to different data sets

C.

You must include the data set height2 in the DATA statement

D.

You cannot use numbers in data set names.

Which statement is true regarding a variable?

A.

A character variable can contain alphabetic characters, numeric digits, and other special characters.

B.

A numeric value must be specified in single or double quotes.

C.

A character value cannot exceed 200 bytes.

D.

A numeric variable can contain digits, decimal point, minus sign, currency symbol, and E for scientific notation.

Given the code shown below:

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

A.

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

B.

Comma12. 2

C.

Dollar10.

D.

Dollar12.

Which PROC SORT option allows you to create an output data set of the sorted data?

A.

Data=

B.

SORTOUT=

C.

OUTPUT=

D.

OUT=

Which iterative DO statement is invalid?

A.

Do 100 to 1200 by 100;

B.

Do num = 1.1 to 1.9 by 0.1;

C.

Do year = 2000 to 2016 by 2;

D.

Do reverse = 10 to 1 by -1;

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

A.

KEEP

B.

DROP

C.

VAR

D.

SELECT

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

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.

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

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;