SAS_Institute
A00-212 · Question #93
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…
The correct answer is A. 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 C has a value of 564.
- BMacro variable C has a value of 1452.
- CMacro variable GROUP has a value of 564.
- DMacro variable GROUP has a value of 1452.
How the community answered
(40 responses)- A78% (31)
- B8% (3)
- C3% (1)
- D13% (5)
Community Discussion
No community discussion yet for this question.