A00-231 Exam Question 91

The SAS data set PETS is sorted by the variables TYPE and BREED.
The following SAS program is submitted:
proc print data = pets;
var type breed;
sum number;
run;
What is the result?
  • A00-231 Exam Question 92

    The SAS data set named WORK.TEST is listed below:
    capacity airplanetype staff
    150 Large 10
    Which one of the following SAS programs created this data set?
  • A00-231 Exam Question 93

    The Excel workbook REGIONS.XLSX contains the following four worksheets:
    EAST
    WEST
    NORTH
    SOUTH
    The following program is submitted:
    libname MYXLS XLSX 'c:\ data\ regions.xlsx';
    Which PROC PRINT step correctly displays the NORTH worksheet?
  • A00-231 Exam Question 94

    The following SAS program is submitted:
    data test;
    infile 'file specification';
    input name $ amount@@;
    run;
    Which of the following is true?