SAS_Institute
A00-211 · Question #67
The following SAS program is submitted: data work.clients; calls = 6; do while (calls le 6); calls + 1; end; run; Which one of the following is the value of the variable CALLS in the output data set?
The correct answer is D. 7. See the full explanation below for the reasoning.
Question
The following SAS program is submitted:
data work.clients; calls = 6; do while (calls le 6); calls + 1; end; run; Which one of the following is the value of the variable CALLS in the output data set?
Options
- A4
- B5
- C6
- D7
How the community answered
(24 responses)- A13% (3)
- B4% (1)
- C8% (2)
- D75% (18)
Community Discussion
No community discussion yet for this question.