How many observations are written the WORK SALES data set?

The following SAS program is submittad:
data work.sales;
do year = 1 to 5;
do month=1 to 12;
x+1;
output
end;
end;
run;
How many observations are written the WORK SALES data set?
A. 0
B. 1
C. 5
D. 60

Download Printable PDF. VALID exam to help you PASS.

One thought on “How many observations are written the WORK SALES data set?

  1. The following SAS program is submitted:
    data work.sales;
    do year = 1 to 5;
    do month = 1 to 12;
    x + 1;
    end;
    end;
    run;
    Which one of the following represents how many observations are written to the WORK.SALES data set?
    A. 0
    B. 1
    C. 5
    D. 60

    ANS: B

    if these is an OUTPUT word after x+1: than the ans will be 60

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.