A00-231 Exam Question 6

Given the data set WORK.EMPDATA:

Which one of the following where statements would display observations with job titles containing the word 'Manager'?
  • A00-231 Exam Question 7

    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?
  • A00-231 Exam Question 8

    Consider the following data step:

    In filtering the values of the variable X in data set WORK.OLD, what value new value would be assigned to X if its original value was a missing value?
  • A00-231 Exam Question 9

    The following SAS program is submitted:
    data temp.x;
    set sasuser.y;
    run;
    What must be submitted prior to this SAS program for the program to execute successfully?
  • A00-231 Exam Question 10

    The following SAS program is submitted:
    data work.sets;
    do until (prod gt 6);
    prod + 1;
    end;
    run;
    What is the value of the variable PROD in the output data set?