A00-211 PDF Dumps 2022 Exam Questions with Practice Test [Q11-Q33]

Share

A00-211 PDF Dumps 2022 Exam Questions with Practice Test

Dumps for Free A00-211 Practice Exam Questions


Introduction to A00-211 : SAS Certified Base Programmer for SAS 9 Exam

According to SAS, SAS® Certified Advanced Programmer for SAS®9 this credentials signifies the upper echelon of SAS programmers who demonstrate a high level of proficiency in SAS® programming expertise.

A00-211 : SAS Certified Base Programmer for SAS 9 Exam is a certification exam that is conducted by Google to validates candidate knowledge and skills of working as a advanced programmer in the Company.

A00-211 : SAS Certified Base Programmer for SAS 9 exam covers the basic and advanced concepts of advanced DATA step programming statements and efficiency techniques to solve complex problems,writing and interpreting SAS SQL code,creating and using the SAS MACRO facility.

After passing this exam, candidates get a certificate from SAS that helps them to demonstrate their proficiency in A00-211 : SAS Certified Base Programmer for SAS 9 to their clients and employers.


A00-211 : SAS Certified Base Programmer for SAS 9 Certified Professional salary

The average salary of a A00-211 : SAS Certified Base Programmer for SAS 9 Certified Expert in

  • United State - 70,247 USD
  • India - 8,42,327 INR
  • England - 46,632 POUND
  • Europe - 45,347 EURO

 

NEW QUESTION 11
The SAS data set WORK.ONE contains a numeric variable named Num ana character variable named Char:
WORK.ONE
Num Char
------ ------
1 23
3 23
1 77
The following SAS program is submitted:
proc print data=WORK.ONE;
where Num='1';
run;
What is output?

  • A. Num Char
    --- ----
    1 23
    1 77
  • B. No output is generated.
  • C. Num Char
    --- ----
    1 23
  • D. Num Char
    --- ----
    1 23
    3 23
    1 77

Answer: B

 

NEW QUESTION 12
A raw data record is listed below:
--------10-------20-------30
1999/10/25
The following SAS program is submitted:
data projectduration;
infile 'file-specification';
input date $ 1 - 10;
run;
Which one of the following statements completes the program above and computes the duration of the project in days as of today's date?

  • A. duration = today( ) - put(date,yymmdd10.);
  • B. duration = today( ) - input(date,ddmmyy10.);
  • C. duration = today( ) - input(date,yymmdd10.);
  • D. duration = today( ) - put(date,ddmmyy10.);

Answer: C

 

NEW QUESTION 13
Given the SAS data set PRICES:
PRICES prodid price K12S5.10producttype NETWORKsales 15returns
B132S 2.34HARDWARE30010 R18KY21.29SOFTWARE255 3KL8BY 6.37HARDWARE12515 DY65DW 5.60HARDWARE455 DGTY23 4.55HARDWARE672
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?

  • A. 0
  • B. 1
  • C. 2
  • D. 3

Answer: C

 

NEW QUESTION 14
Given the SAS data set WORK.ONE:

And the SAS data set WORK.TWO:

The following program is submitted: What is the first observation in the SAS data set WORK.BOTH?

  • A. Option B
  • B. Option D
  • C. Option A
  • D. Option C

Answer: D

 

NEW QUESTION 15
The following SAS program is submitted:
data work.test;
First = 'Ipswich, England';
City_Country = substr(First,1,7)!!', '!!'England';
run;
Which one of the following is the length of the variable CITY_COUNTRY in the output data set?

  • A. 0
  • B. 1
  • C. 2
  • D. 3

Answer: D

Explanation:
Section: Volume B

 

NEW QUESTION 16
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?

  • A. department=trim(dept)||put(number,3.);
  • B. department = dept II number;
  • C. department = left(dept) II number;
  • D. department = trim(dept) number;

Answer: A

Explanation:
Section: Volume A

 

NEW QUESTION 17
The following SAS program is submitted, creating the SAS data set ONE:
data one;
infile 'file specification';
input num chars$;
run;
ONE
NUMCHAR
----------------
123
323
177
The following SAS program is submitted:
proc print data = one;
where char = 23;
run;
What is output?

  • A. NUM CHAR1 772
  • B. NUM CHAR1 233 23
  • C. No output is generated.
  • D. NUM CHAR1 233 231 77

Answer: C

 

NEW QUESTION 18
Which one of the following SAS DATA steps saves the temporary data set named MYDATA as a
permanent data set?

  • A. libname sasdata 'SAS-data-library';
    data sasdata.mydata;
    keep mydata;
    run;
  • B. libname sasdata 'SAS-data-library';
    data sasdata.mydata;
    copy mydata;
    run;
  • C. libname sasdata 'SAS-data-library';
    data sasdata.mydata;
    save mydata;
    run;
  • D. libname sasdata 'SAS-data-library';
    data sasdata.mydata;
    set mydata;
    run;

Answer: D

 

NEW QUESTION 19
The following output is created by the FREQUENCY procedure:

Which TABLES option(s) would be used to eliminate the row and column counts and just see the frequencies and percents?

  • A. freq percent
  • B. norow nocol
  • C. norowcount nocolcount
  • D. nocounts

Answer: B

 

NEW QUESTION 20
The following SAS program is submitted: data WORK.AUTHORS;
array Favorites{3} $ 8 ('Shakespeare','Hemingway','McCaffrey');
run;
What is the value of the second variable in the dataset WORK.AUTHORS?

  • A. Hemingway
  • B. The program contains errors. No variables are created.
  • C. Hemingwa
  • D. ' ' (a missing value)

Answer: C

 

NEW QUESTION 21
Given the SAS data set WORK.PRODUCTS:

How many variables does the WORK.REVENUE data set contain?

  • A. 0
  • B. 1
  • C. 2
  • D. 3

Answer: C

Explanation:
Section: Volume B

 

NEW QUESTION 22
This question will ask you to provide lines of missing code.
The following SAS program is submitted:

Which statement inserted, respectively, in the two locations indicated above create a report stored in a PDF file?

Answer:

Explanation:
Pending

 

NEW QUESTION 23
The following program is submitted:

Why does the program fail?

  • A. The format name contains a period in the VALUE statement.
  • B. The RUN statement is missing after the FORMAT procedure.
  • C. The LABEL option is missing from the PROC PRINT statement.
  • D. The PAGENO option is invalid in the OPTIONS statement.

Answer: A

 

NEW QUESTION 24
Given the SAS data set ONE:
ONE
Obs Dte
----- --------
1 09JAN2005
2 12JAN2005
The following SAS program is submitted:
data two;
set one;
day = <insert expression here>;
format dte date9.;
run;
The data set TWO is created:
TWO
Obs Dte Day
1 09JAN2005 1
12 JAN2005 4
Which expression successfully completed the program and created the variable DAY?

  • A. datdif(dte,'01jan2005'd,'act/act')
  • B. dayofweek(dte)
  • C. weekday(dte)
  • D. day(dte)

Answer: C

 

NEW QUESTION 25
The contents of the raw data file CALENDAR are listed below:
--------10-------20-------30
01012000
The following SAS program is submitted:
data test;
infile 'calendar';
input @1 date mmddyy10.;
if date = '01012000'd then event = 'January 1st';
run;
Which one of the following is the value of the EVENT variable?

  • A. January 1st
  • B. 01012000
  • C. . (missing numeric value)
  • D. The value can not be determined as the program fails to execute due to errors

Answer: D

 

NEW QUESTION 26
The following code was modified to generate the results further below:
proc format;
value agegrp
low-12 ='Pre-Teen'
13-high = 'Teen';
run;
proc means data=SASHELP.CLASS;
var Height;
class Sex Age;
format Age agegrp.;
run;
The following results were generated to display only specific statistics and limit the decimals with the
modification: Which statement below was modified or added to generate the results above:

  • A. proc means data=SASHELP.CLASS maxdec=1 ;
  • B. output nobs min max mean maxdec=1;
  • C. proc means data=SASHELP.CLASS min max mean maxdec=1;
  • D. var Height / nobs min max mean maxdec=1;

Answer: C

 

NEW QUESTION 27
Given the SAS data set ONE:
Given the SAS data set WORK.ONE:

The following SAS program is submitted:

Which report is produced?

  • A. Option D
  • B. Option A
  • C. Option B
  • D. Option C

Answer: C

Explanation:
Section: Volume A

 

NEW QUESTION 28
Which one of the following SAS statements renames two variables?

  • A. set work.dept1
    work.dept2(rename = (jcode = jobcode
    sal = salary));
  • B. set work.dept1 work.dept2(rename = jcode = jobcode sal = salary);
  • C. set work.dept1
    work.dept2(rename = (jcode = jobcode)
    (sal = salary));
  • D. set work.dept1 work.dept2(rename = (jcode jobcode) (sal salary));

Answer: A

 

NEW QUESTION 29
The following SAS program is submitted:
data _null_;
set old (keep = prod sales1 sales2);
file 'file-specification';
put sales1 sales2;
run;
Which one of the following default delimiters separates the fields in the raw data file created?

  • A. : (colon)
  • B. , (comma)
  • C. ; (semicolon)
  • D. (space)

Answer: D

Explanation:
Section: Volume B

 

NEW QUESTION 30
The following SAS program is submitted:
data WORK.OUTDS;
do until(Prod GT 6);
Prod + 1;
end;
run;
What is the value of the variable Prod in the output data set?

  • A. Undetermined, infinite loop.
  • B. 0
  • C. 1
  • D. . (missing)

Answer: C

 

NEW QUESTION 31
Given the following raw data records:

The following output is desired:

Which SAS program correctly reads in the raw data?

  • A. Option B
  • B. Option A
  • C. Option C
  • D. Option D

Answer: D

 

NEW QUESTION 32
The following SAS program is submitted:
data work.products;
Product_Number = 5461;
Item = '1001';
Item_Reference = Item'/'Product_Number;
run;
Which one of the following is the value of the variable ITEM_REFERENCE in the output data set?

  • A. 1001/5461
  • B. . (missing numeric value)
  • C. 1001/ 5461
  • D. The value can not be determined as the program fails to execute due to errors.

Answer: D

 

NEW QUESTION 33
......


How to Prepare For A00-211 : SAS Certified Base Programmer for SAS 9 Exam

Preparation Guide for A00-211 : SAS Certified Base Programmer for SAS 9 Exam

Introduction

SAS (previously “Statistical Analysis System”) may be a package suite designed by SAS Institute for advanced analytics, variable analyses, business intelligence, knowledge management, and prognosticative analytics.

A00-211 : SAS Certified Base Programmer for SAS 9 exam is administered by SAS and Pearson VUE has created a track for IT professionals to certify as a IT Programer on SAS.This certification program provides SAS professionals a way to demonstrate their skills. The assessment is based on a rigorous exam using industry standard methodology to determine whether a candidate meets SAS's proficiency standards.

SAS® Certified Advanced Programmer for SAS®9, candidates who earn this credential must have either SAS Certified Base Programmer for SAS®9 or the SAS Certified Specialist: Base Programming Using SAS 9 accreditation and then take and pass the SAS Advanced Programming for SAS®9 exam.

In this guide, we will cover the A00-211 Exam, A00-211 : SAS Certified Base Programmer for SAS 9 Certified professionals salary and all aspects of the A00-211 : SAS Certified Base Programmer for SAS 9 Certification.

The SAS international Certification Program currently issues versioned accreditation that don't lapse. The version is indicated in the credential name - for example, SAS Certified Base Programmer for SAS 9. Earlier, SAS issued non-versioned credentials and required rE Certification every 3 years, however, with the addition of versioning to the credential names, rE Certification requirements were dropped.

 

Check your preparation for SASInstitute A00-211 On-Demand Exam: https://www.actual4dump.com/SASInstitute/A00-211-actualtests-dumps.html