Question 51

The following SAS program is submitted:
data WORK.OUTDS;
do until(Prod GT 6);
Prod + 1;
end;
run;
What is the value of the variable Prod in the output data set?
  • Question 52

    Which program displays a listing of all data sets in the SASUSER library?
  • Question 53

    Given the contents of the raw data file 'EMPLOYEE.TXT'

    Which SAS informat correctly completes the program?
  • Question 54

    Given the SAS data set SASDATA TWO:
    SASDATA TWO
    XY
    52
    31
    56
    The following SAS program is submitted:
    data sasuser.one two sasdata.three;
    set sasdata two;
    if x = 5 then output sasuser.one;
    else output sasdata two;
    run;
    What is the result?
  • Question 55

    Given the SAS data set WORK.EMP_NAME:

    Given the SAS data set WORK.EMP_DEPT:

    The following program is submitted:

    How many observations are in data set WORK.ALL after submitting the program?