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

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)

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Which statement is true regarding the DATA step?

A.

The DATA step can only read raw data files.

B.

The DATA step reads, processes and creates date

C.

The DATA step can output only one data set.

D.

The DATA step must be the first step in a program.

Which statement is true about SAS program syntax?

A.

Any statement that begins with an & is a comment and will not execute.

B.

Global statements (such as LIBNAME) need a RUN statement to execute.

C.

Character values in quotation marks are case sensitive.

D.

SAS cannot process steps with multiple statements on the same line.

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

A.

Syntax error

B.

Logic error

C.

Special error

D.

Data error

Which LABEL statement has correct syntax?

A.

Label FName=’ First Name’ ;

LName =; Last Name‘ ;

B.

Label FName=’ First Name’

LName =’ Last Name‘ ;

C.

Label FName=’ First Name’ and

LName =’ Last Name‘ ;

D.

Label FName=’ First Name’ ,

LName =; Last Name‘ ;

Which program generates the PROC MEANS report below?

A.

proc means data=sashelp.class nodec;

class Age; run;

B.

proc means data=sashelp. class;

group Age;

run;

C.

proc means data=sashelp. class;

by Age;

run;

D.

proc means data=sashelp. class maxdec=0;

var Age;

run;

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

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;

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;

Given the PROC PRINT report of the INVEST data set shown below:

How many observations are in the FORCAST data set after this program executes?

A.

30

B.

10

C.

0

D.

20

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

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;