A00-231 Exam Question 16

The following SAS DATA step is submitted:
data sasdata.atlanta
sasdata.boston
work.portland
work.phoenix;
set company.prdsales;
if region = 'NE' then output boston;
if region = 'SE' then output atlanta;
if region = 'SW' then output phoenix;
if region = 'NW' then output portland;
run;
Which one of the following is true regarding the output data sets?
  • A00-231 Exam Question 17

    The SAS data set WORK.ONE contains a numeric variable named Num and a character variable named Char:

    The following SAS program is submitted:
    proc print data=WORK.ONE;
    where Num=contains (1);
    run;
    Which output is generated?
  • A00-231 Exam Question 18

    The following SAS program is submitted:
    data revenue;
    set year_1;
    var1 = mdy(1,15,1960);
    run;
    Which one of the following values does the variable named VAR1 contain?
  • A00-231 Exam Question 19

    When SAS encounters a data when reading from a raw data file, which action will occur?
  • A00-231 Exam Question 20

    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?