SAS_Institute
A00-202 · Question #29
Given the following SAS data set ONE: ONE GROUP SUM ----------------- -------- A 765 B 123 C 564 The following SAS program is submitted: data _null_; set one; call symput(group,sum); run; Which one…
The correct answer is C. Macro variable C has a value of 564. See the full explanation below for the reasoning.
Question
Given the following SAS data set ONE:
ONE GROUP SUM ----------------- -------- A 765 B 123 C 564 The following SAS program is submitted:
data null; set one; call symput(group,sum); run; Which one of the following is the result when the program finishes execution?
Options
- AMacro variable GROUP has a value of 1452.
- BMacro variable C has a value of 1452.
- CMacro variable C has a value of 564.
- DMacro variable GROUP has a value of 564.
How the community answered
(32 responses)- A6% (2)
- B9% (3)
- C81% (26)
- D3% (1)
Community Discussion
No community discussion yet for this question.