A00-231 Exam Question 31

The following SAS program is submitted:
data work.one;
x = 3;
y = 2;
z = x ** y;
run;
Which one of the following is the value of the variable Z in the output data set?
  • A00-231 Exam Question 32

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

    The value 110700 is stored in a numeric variable named SALARY.
    Which FORMAT statement displays the value as $110,700.00 in a report?
  • A00-231 Exam Question 34

    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:
  • A00-231 Exam Question 35

    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?