We provide real A00-211 exam questions and answers braindumps in two formats. Download PDF & Practice Tests. Pass SAS Institute A00-211 Exam quickly & easily. The A00-211 PDF type is available for reading and printing. You can print more and practice many times. With the help of our SAS Institute A00-211 dumps pdf and vce product and material, you can easily pass the A00-211 exam.

Q89. The following SAS program is submitted: 

data work.accounting; 

set work.dept1 work.dept2; 

jobcode = ‘FA1’; 

length jobcode $ 8; 

run; 

A character variable named JOBCODE is contained in both the WORK.DEPT1 and WORK.DEPT2 SAS data sets. The variable JOBCODE has a length of 5 in the WORK.DEPT1 data set and a length of 7 in the WORK.DEPT2 data set. What is the length of the variable JOBCODE in the output data set? 

A. 3 

B. 5 

C. 7 

D. 8 

Answer:


Q90. The data set RALESTATE has the variable LOCALFEE with a format or 9. and a variable 

COUNTRYFEE with a format or 7.; 

The following SAS program is submitted: 

data history; 

format local fee country fee percent6.; 

set realestate; 

local fee = local fee / 100; 

country fee = country fee / 100; 

run; 

What are the formats of the variables LOCALFEE and COUNTRYFEE in the output dataset? 

A. LOCALFEE has format of 9. and COUNTRYFEE has a format of 7. 

B. LOCALFEE has format of 9. and COUNTRYFEE has a format of percent6. 

C. LOCALFEE has format of percent6. and COUNTRYFEE has a format of percent6. 

D. The data step fails execution; there is no format for LOCALFEE 

Answer:


Q91. The following GAS program is submitted: 

data work.empsalary; 

set work.people (in = inemp) 

work.money (in = insal); 

if insal and inemp; 

run; 

The SAS data set WORKPEOPLE has 5 observations, and the data set WORKMONEY has 7 observations. How many observations will the data set WORK.EMPSALARY contain? 

A. 0 

B. 5 

C. 7 

D. 12 

Answer:


Q92. The contents of the raw data file TEAM are listed below: 

--------10-------20-------30 

Janice 10 

Henri 11 

Michael 11 

Susan 12 

The following SAS program is submitted: 

data group; 

infile 'team' 

input name $15. age 2.; 

file 'file-specification' 

put name $15. +5 age 2.; 

run; 

Which one of the following describes the output created? 

A. a raw data file only 

B. a SAS data set named GROUP only 

C. a SAS data set named GROUP and a raw data file 

D. No output is generated as the program fails to execute due to errors. 

Answer:


Q93. Which one of the following statements is true regarding the name of a SAS array? 

A. It is saved with the data set. 

B. It can be used in procedures. 

C. It exists only for the duration of the DATA step. 

D. It can be the same as the name of a variable in the data set. 

Answer:


Q94. Read the table 

The following SAS program is submitted: 

proc freq data = sales; 

<insert TABLES statement here> 

run; 

The following output is created by the FREQUENCY procedure: 

Which TABLES statement(s) completed the program and produced the output? 

A. tables region product; 

B. tables region * product; 

C. tables product * region; 

D. tables product; tables region; 

Answer:


Q95. The following SAS program is submitted: 

data WORK.ACCOUNTING; 

set WORK.DEPARTMENT; 

length EmpId $6; 

CharEmpid=EmpId; 

run; 

If data set WORK.DEPARTMENT has a numeric variable EmpId. Which statement is true about the output dataset? 

A. The type of the variable CharEmpid is numeric. 

B. The type of the variable CharEmpid is unknown. 

C. The type of the variable CharEmpid is character. 

D. The program fails to execute due to errors. 

Answer:


Q96. Which one of the following is true of the SUM statement in a SAS DATA step program? 

A. It is only valid in conjunction with a SUM function. 

B. It is not valid with the SET, MERGE and UPDATE statements. 

C. It adds the value of an expression to an accumulator variable and ignores missing values. 

D. It does not retain the accumulator variable value from one iteration of the SAS DATA step to the next. 

Answer: