A00-231 Exam Question 46

The following SAS program is submitted:
data work.pieces;
do while (n lt 6);
n + 1;
end;
run;
Which one of the following is the value of the variable N in the output data set?
  • A00-231 Exam Question 47

    Which one of the following SAS system options prevents the page number from appearing on a report?
  • A00-231 Exam Question 48

    The value 110700 is stored in a numeric variable named SALARY.
    Which FORMAT statement displays the value as $110,700.00 in a report?
  • A00-231 Exam Question 49

    A raw data record is listed below:
    --------10-------20-------30
    1999/10/25
    The following SAS program is submitted:
    data projectduration;
    infile 'file-specification';
    input date $ 1 - 10;
    run;
    Which one of the following statements completes the program above and computes the duration of the project in days as of today's date?
  • A00-231 Exam Question 50

    The contents of the raw data file PRODUCT are listed below:
    --------10-------20-------30
    24613 $25.31
    The following SAS program is submitted:
    data inventory;
    infile 'product';
    input idnum 5. @10 price;
    run;
    Which one of the following is the value of the PRICE variable?