A00-211 Exam Details

  • Exam Code
    :A00-211
  • Exam Name
    :SAS Base Programming for SAS 9
  • Certification
    :SAS Institute Certifications
  • Vendor
    :SAS Institute
  • Total Questions
    :270 Q&As
  • Last Updated
    :Jun 07, 2026

SAS Institute A00-211 Online Questions & Answers

  • Question 101:

    The SAS data set SASUSER.HOUSES contains a variable PRICE which has been assigned a permanent label of "Asking Price". Which SAS program temporarily replaces the label "Asking Price" with the label "Sale Price" in the output?

    A. proc print data = sasuser.houses; label price = "Sale Price"; run;
    B. proc print data = sasuser.houses label; label price "Sale Price"; run;
    C. proc print data = sasuser.houses label; label price = "Sale Price"; run;
    D. proc print data = sasuser.houses; price = "Sale Price"; run;

  • Question 102:

    The following SAS program is submitted:

    libname sasdata 'SAS-data-library';

    data test;

    set sasdata.chemists;

    if jobcode = 'chem3'

    then description = 'Senior Chemist';

    else description = 'Unknown';

    run;

    A value for the variable JOBCODE is listed below:

    JOBCODE

    CHEM3

    Which one of the following values does the variable DESCRIPTION contain?

    A. chem3
    B. Unknown
    C. Senior Chemist
    D. ' ' (missing character value)

  • Question 103:

    When the following SAS program is submitted, the data set SASDATA.PRDSALES contains 5000 observations:

    libname sasdata 'SAS-data-library';

    options obs = 500;

    proc print data = sasdata.prdsales (firstobs = 100);

    run;

    options obs = max;

    proc means data = sasdata.prdsales (firstobs = 500);

    run;

    How many observations are processed by each procedure?

    A. 400 for PROC PRINT 4500 for PROC MEANS
    B. 401 for PROC PRINT 4501 for PROC MEANS
    C. 401 for PROC PRINT 4500 for PROC MEANS
    D. 500 for PROC PRINT 5000 for PROC MEANS

  • Question 104:

    The following SAS program is submitted: data WORK.DATE_INFO;

    Day="01" ; Yr=1960 ; X=mdy(Day,01,Yr) ; run;

    What is the value of the variable X?

    A. the numeric value 0
    B. the character value "01011960"
    C. a missing value due to syntax errors
    D. the step will not compile because of the character argument in the mdy function.

  • Question 105:

    The following SAS program is submitted:

    data work.flights;

    destination = `cph';

    select(destination);

    when('LHR') city = `London';

    when('CPH') city = `Copenhagen';

    otherwise city = `Other';

    end;

    run;

    What is the value of the CITY variable?

    A. Other
    B. Copenh
    C. Copenhagen
    D. ``(missing character value)

  • Question 106:

    A realtor has two customers. One customer wants to view a list of homes selling for less than $60,000. The other customer wants to view a list of homes selling for greater than $100,000. Assuming the PRICE variable is numeric, which one of the following PRINT procedure steps will select all desired observations?

    A. proc print data = sasuser.houses; where price lt 60000; where price gt 100000; run;
    B. proc print data = sasuser.houses; where price lt 60000 or price gt 100000; run;
    C. proc print data = sasuser.houses; where price lt 60000 and price gt 100000; run;
    D. proc print data = sasuser.houses; where price lt 60000 or where price gt 100000; run;

  • Question 107:

    The following SAS program is submitted:

    What types of variables are DayOfMonth, MonthOfYear, and Year?

    A. DayOfMonth, Year, and MonthOfYear are character.
    B. DayOfMonth, Year, and MonthOfYear are numeric.
    C. DayOfMonth and Year are numeric. MonthOfYear is character.
    D. DayOfMonth, Year, and MonthOfYear are date values.

  • Question 108:

    Given the SAS data set WORK.PRODUCTS:

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

    A. 2
    B. 3
    C. 4
    D. 6

  • Question 109:

    Given the data set WORK.EMPDATA:

    Which one of the following where statements would display observations with job titles containing the word 'Manager'?

    A. where substr(Job_Title,(length(Job_Title)-6))='Manager';
    B. where upcase(scan(Job_Title,-1,' '))='MANAGER';
    C. where Job_Title='% Manager ';
    D. where Job_Title like '%Manager%';

  • Question 110:

    Given the SAS data set ONE:

    ONE

    Obs Dte

    1 09JAN2005

    2 12JAN2005

    The following SAS program is submitted:

    data two;

    set one;

    day = ;

    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. day(dte)
    B. weekday(dte)
    C. dayofweek(dte)
    D. datdif(dte,'01jan2005'd,'act/act')

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only SAS Institute exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your A00-211 exam preparations and SAS Institute certification application, do not hesitate to visit our Vcedump.com to find your solutions here.