The following SAS program is submitted:
data work.sets;
do until (prod gt 6);
prod + 1;
end;
run;
Which one of the following is the value of the variable PROD in the output data set?
A. 5
B. 6
C. 7
D. 8
Collection of Practice questions and Answers for SAS Certification...
3 comments:
Absolutely Right ...
The value for prod is not provided so it will consider it to be zero..
Answer: C
Same question was asked for 10 (prod+10).
Post a Comment