Question 51

The following SAS program is submitted:
data work. new;
length word $7;
amount = 4;
it amount = 4 then word = 'FOUR';
else if amount = 7
then word = 'SEVEN';
else word = 'NONE!!!';
amount = 7;
run;
What are the values of the AMOUNT and WORD variables in SAS dataset work.new?
  • Question 52

    The Excel workbook QTR1.XLS contains the following three worksheets:
    JAN
    FEB
    MAR
    Which statement correctly assigns a library reference to the Excel workbook?
  • Question 53

    The following SAS program is submitted:
    data work.empsalary;
    set work.people (in = inemp)
    work.money (in = insal);
    if insal and inemp;
    run;
    The SAS data set WORKPEOPLE has 5 observations, and the data set WORKMONEY has 7 observations.
    How many observations will the data set WORK.EMPSALARY contain?
  • Question 54

    The contents of the raw data file NAMENUM are listed below:
    --------10-------20-------30
    Joe xx
    The following SAS program is submitted:
    data test;
    infile 'namenum';
    input name $ number;
    run;
    Which one of the following is the value of the NUMBER variable?
  • Question 55

    The contents of the raw data file SIZE are listed below:
    --------10-------20-------30
    72 95
    The following SAS program is submitted:
    data test;
    infile 'size';
    input @1 height 2. @4 weight 2;
    run;
    Which one of the following is the value of the variable WEIGHT in the output data set?