Which LABEL statement has correct syncytax?
A. Label1 FName=' First Name' ; LName =; Last Name` ;
B. Label1 FName=' First Name' LName =' Last Name` ;
C. Label1 FName=' First Name' and LName =' Last Name` ;
D. Label1 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;
Given the data set NAMES:

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

A. proc sort data=Names; orderby Age
B. proc sort data=Names; by Age
C. proc sort data=Names; by Age Name
D. proc sort data=Names; orderby Name; run;
Which program correctly subnets the SASHELP. BASEBALL data set to include only the players in the East Division with 75 or more hits?
A. data bball; set sashelp.baseball; whete Division and nHits run;
B. data bball; sot sashelp.baseball; where Division -- 'East; where nHits >= 75; run;
C. data bball; set sashelp.baseball; where Division = * East; or nHits .= 75;
D. data bball; set sashelp.basaball; whero Division -- 'Eas run,
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 variable names?
A. Variable names are case sensitive.
B. Variable names are from 1 to 32 characters in length.
C. Variable names are optional when you create a data set
D. Variable names can start with a number or an underscore
When the following code is submitted, execution fails.

Why does the execution fail?
A. Multiple executable statements are not allowed in the DO block.
B. The OUTPUT statement is not allowed in the DO block.
C. There are two unclosed DO block.
D. The conditional logic expressions fail for the DO block
The SAS log of a submitted DATA step is shown below:

Which action resolve the error messages?
A. Remove the period after the value of Inc.
B. Enclose the value of ABC Inc . in quotation marks.
C. Add a LENGTH statement to declare the company variable as character
D. Enclose the value of ABC Inc. in parentheses.
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.