A00-231 Exam Question 11

The following SAS program is submitted:
options pageno = 1;
proc print data = sasuser.houses;
run;
proc means data = sasuser.shoes;
run;
The report created by the PRINT procedure step generates 5 pages of output.
What is the page number on the first page of the report generated by the MEANS procedure step?
  • A00-231 Exam Question 12

    The following SAS program is submitted:
    data work.month;
    date = put('13mar2000'd,ddmmyy10.);
    run;
    Which one of the following represents the type and length of the variable DATE in the output data set?
  • A00-231 Exam Question 13

    The following SAS program is submitted:
    data work.accounting;
    set work.dept1 work.dept2;
    jobcode = 'FA1';
    length jobcode $ 8;
    run;
    A character variable named JOBCODE is contained in both the WORK.DEPT1 and WORK.DEPT2 SAS data sets. The variable JOBCODE has a length of 5 in the WORK.DEPT1 data set and a length of 7 in the WORK.DEPT2 data set.
    What is the length of the variable JOBCODE in the output data set?
  • A00-231 Exam Question 14

    The following SAS program is submitted:
    data work.totalsales (keep = monthsales{12} );
    set work.monthlysales (keep = year product sales);
    array monthsales {12} ;
    do i=1 to 12;
    monthsales{i} = sales;
    end;
    run;
    The data set named WORK.MONTHLYSALES has one observation per month for each of five years for a total of 60 observations.
    Which one of the following is the result of the above program?
  • A00-231 Exam Question 15

    After a SAS program is submitted, the following is written to the SAS log:

    What issue generated the error in the log?