Question 61

On which portion(s) of a SAS data set does the PRINT procedure report?
  • Question 62

    Given the following IF/THEN statement:
    If Age NE 16 and Age NE 15 then Group-1;
    Which assignment statement for variable Group is functionally equivalent to the original statement used in the above data step?
  • Question 63

    The following SAS program is submitted:
    libname sasdata 'SAS-data-library';
    data test;
    set sasdata.chemists;
    if jobcode = 'chem3'
    then description = 'Senior Chemist';
    else description = 'Unknown';
    run;
    A value for the variable JOBCODE is listed below:
    JOBCODE
    CHEM3
    Which one of the following values does the variable DESCRIPTION contain?
  • Question 64

    The following SAS program is submitted:

    What is the result?
  • Question 65

    Given the following SAS data set WORK.EMPDATA:

    Which WERE statement would display observations wit Job_Title containing the word "Manager"?