SAS_Institute
A00-280 · Question #74
data WORK.DATE; days=1; do While (day LE 7); day + 1; end; run; What is the value of the variable day when the data step completes?
The correct answer is D. 8. See the full explanation below for the reasoning.
Question
data WORK.DATE;
days=1;
do While (day LE 7);
day + 1;
end;
run;
What is the value of the variable day when the data step completes?
Options
- A1
- B6
- C7
- D8
How the community answered
(30 responses)- A7% (2)
- B3% (1)
- C10% (3)
- D80% (24)
Community Discussion
No community discussion yet for this question.