SAS Certified Base Programmer 123 Questions (58)
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?
A. 6
B. 9
C. . (missing numeric value)
D. The program fails to execute due to errors.
Topics:
SAS Base Questions |
2 Comments »
B
please explain