Download SAS Base Programming for SAS (r) 9.A00-211.CertDumps.2018-06-27.173q.vcex

Vendor: SASInstitute
Exam Code: A00-211
Exam Name: SAS Base Programming for SAS (r) 9
Date: Jun 27, 2018
File Size: 3 MB

How to open VCEX files?

Files with VCEX extension can be opened by ProfExam Simulator.

Demo Questions

Question 1
Given the SAS data set SASDATA TWO:
SASDATA TWO 
X    Y 
--    --     
5    2 
3    1 
5    6 
The following SAS program is submitted:
data sasuser.one two sasdata.three; 
set sasdata two; 
if x = 5 then output sasuser.one; 
else output sasdata two; 
run; 
What is the result?
  1. data set SASUSER.ONE has 5 observations 
    data set SASUSER.TWO has 5 observations 
    data set WORK.OTHER has 3 observations
  2. data set SASUSER.ONE has 2 observations 
    data set SASUSER.TWO has 2 observations 
    data set WORK.OTHER has 1 observations
  3. data set SASUSER.ONE has 2 observations 
    data set SASUSER.TWO has 2 observations 
    data set WORK.OTHER has 5 observations
  4. No data sets are output. 
    The DATA step fails execution due to syntax errors.
Correct answer: D
Question 2
The following SAS program is submitted:
footnote1 ‘Sales Report for Last Month’; 
footnote2 ‘Selected Products Only’; 
footnote3 ‘All Regions’; 
footnote4 ‘All Figures in Thousands of Dollars’; 
proc print data = sasuser.shoes; 
footnote2 ‘All Products’; 
run; 
Which footnote(s) is/are displayed in the report?
  1. All Products
  2. Sales Report for Last Month All Products
  3. All Products All Regions All Figures in Thousands of Dollars
  4. Sales Report for Last Month All Products All Regions All Figures in Thousands of Dollars
Correct answer: B
Question 3
Given the raw data record DEPT:
----|----10---|----20---|----30 
Printing 750 
The following SAS program is submitted:
data bonus; 
infile ‘dept’; 
inputdept$ 1-11 number 13- 15; 
<insert statement here> 
run; 
Which SAS statement completes the program and results in a value of ‘Printing750’ for the DEPARTMENT variable?
  1. department = dept II number;
  2. department = left(dept) II number;
  3. department = trim(dept) number;
  4. department=trim(dept)||put(number,3.);
Correct answer: D
Question 4
The following SAS program is submitted:
data one; 
addressl = ‘214 London Way’; 
run; 
data one; 
set one; 
address = tranwrd(address1, ‘Way’, ‘Drive’); run; 
What are the length and value of the variable ADDRESS?
  1. Length is 14; value is ‘214 London Dri’.
  2. Length is 14; value is ‘214 London Way’.
  3. Length is 16; value is ‘214 London Drive’.
  4. Length is 200; value is ‘214 London Drive’.
Correct answer: D
Question 5
The SAS data sets WORK.EMPLOYEE and WORK.SALARY are shown below:
WORK.EMPLOYEE WORK.SALARY 
fname age name salary 
Bruce 30 Bruce 25000 
Dan 40 Bruce 35000 
Dan 25000 
The following SAS program is submitted:
data work.empdata; 
by fname; 
totsal + salary; 
run; 
Which one of the following statements completes the merge of the two data sets by the FNAME variable?
  1. merge work.employee 
    work.salary (fname = name);
  2. merge work.employee 
    work.salary (name = fname);
  3. merge work.employee 
    work.salary (rename = (fname = name));
  4. merge work.employee 
    work.salary (rename = (name = fname));
Correct answer: D
Question 6
Which program displays a listing of all data sets in the SASUSER library?
  1. proc contents lib = sasuser.all; run;
  2. proc contents data = sasuser.all; run;
  3. proc contents lib = sasuser._alI_; run;
  4. proc contents data = sasuser._all_; run;
Correct answer: D
Question 7
The following SAS program is submitted:
proc sort data = work.employee; 
by descending fname; 
proc sort data = work.salary; 
by descending fname; 
data work.empdata; 
merge work.employee 
work.salary; 
by fname; 
run; 
Why does the program rail to execute?
  1. The SORT procedures contain invalid syntax.
  2. The merged data sets are not permanent SAS data sets.
  3. The RUN statement was omitted alter each or the SORT procedures.
  4. The data sets were not merged in the order by which they were sorted.
Correct answer: D
Question 8
Given the following raw data record:
----I----10---I----20---I----30 
son Travis, 
The following output is desired:
Obs relation firstname 
1 son Travis 
Which SAS program correctly reads in the raw data?
  1. data family ( dIm = ‘,’); infile ‘tile specification’; input relation $ firstname $; run;
  2. options dIm = ‘,’; data family; infile ‘file specification’; input relation $ firstname $; run;
  3. data family; infile ‘file specification’ dIm = ‘,’; input relation $ firstname $; run;
  4. data family; infile ‘file specification’; input relation $ firstname $ / dim = ‘,’; run;
Correct answer: C
Question 9
Given the SAS data set AGES:
AGES 
AGE 
--------- 
The variable AGE contains character values. The following SAS program is submitted:
data subset; 
set ages; 
where age> 12; 
run; 
How many observations are written out to the data set SUBSET?
  1. 0
  2. 1
  3. 2
  4. 3
Correct answer: A
Question 10
Given the SAS data set PRICES:
PRICES 
prodid  price 
K12S    5.10    producttype 
NETWORK    sales 
15    returns 
B132S  2.34    HARDWARE    300    10 
R18KY21.29    SOFTWARE    25    5 
3KL8BY 6.37    HARDWARE    125    15 
DY65DW 5.60    HARDWARE    45    5 
DGTY23 4.55    HARDWARE    67    2 
The following SAS program is submitted:
data hware inter soft; 
set prices (keep = producttype price); 
if price le 5.00; 
if producttype = ‘HARDWARE’ then output HWARE; 
else if producttype = ‘NETWORK’ then output INTER; 
else if producttype = ‘SOFTWARE’ then output SOFT; 
run; 
How many observations does the HWARE data set contain?
  1. 0
  2. 2
  3. 3
  4. 4
Correct answer: B
HOW TO OPEN VCE FILES

Use VCE Exam Simulator to open VCE files
Avanaset

HOW TO OPEN VCEX AND EXAM FILES

Use ProfExam Simulator to open VCEX and EXAM files
ProfExam Screen

ProfExam
ProfExam at a 20% markdown

You have the opportunity to purchase ProfExam at a 20% reduced price

Get Now!