Question 31

The following SAS program is submitted:
proc print data = sasuser.houses;
run;
proc means data = sasuser.shoes;
run;
Which one of the following OPTIONS statements resets the page number to 1 for the second report?
  • Question 32

    Given the SAS data set WORKAWARDS:
    WORK.AWARDS
    FNAMEPOINTSMONTH
    ----------------------------------
    Amy24
    Amy17
    Gerard33
    Wang33
    Wang112
    Wang18
    The following SAS program is submitted:
    proc sort data = work.awards;
    by descending fname points;
    run;
    How are the observations sorted?
  • Question 33

    Given the contents of the raw data file EMPLOYEE:
    ----|----10----|----20----|----30
    Alan
    19/2/2004
    ACCT
    Rob
    22/5/2004
    MKTG
    MaryJane
    14/3/2004
    EDUC
    The following SAS program is submitted:
    data emps;
    infile 'employee';
    input@1 name$
    @15 date <insert INFORMAT here>
    @25 department$;
    run;
    Which INFORMAT correctly completes the program?
  • Question 34

    The contents of the raw data file CALENDAR are listed below:
    --------10-------20-------30
    01012000
    The following SAS program is submitted:
    data test;
    infile 'calendar';
    input @1 date mmddyy10.;
    if date = '01012000'd then event = 'January 1st';
    run;
    Which one of the following is the value of the EVENT variable?
  • Question 35

    The following SAS program is submitted:
    data WORK.DATE_INFO;
    X="01Jan1960" D;
    run;
    What variable X contains what value?