SAS_Institute
A00-201 · Question #24
The following SAS program is submitted: data work.one; x = 3; y = 2; z = x ** y; run; Which one of the following is the value of the variable Z in the output data set?
The correct answer is B. 9. See the full explanation below for the reasoning.
Question
The following SAS program is submitted:
data work.one;
x = 3;
y = 2;
z = x ** y;
run;
Which one of the following is the value of the variable Z in the output data set?
Options
- A6
- B9
- C. (missing numeric value)
- DThe program fails to execute due to errors.
How the community answered
(50 responses)- A10% (5)
- B84% (42)
- C2% (1)
- D4% (2)
Community Discussion
No community discussion yet for this question.