SAS Certified Base Programmer 123 Questions (45)
The following SAS program is submitted:
data work.test; array agent{4} $ 12 sales1 - sales4; run;
Which one of the following represents the variables that are contained in the output data set?
A. SALES1, SALES2, SALES3, SALES4
B. AGENTS1, AGENTS2, AGENTS3, AGENTS4
C. None, the DATA step fails because the ARRAY statement can reference only numeric data.
D. None, the DATA step fails because the ARRAY statement can reference only pre-existing variables.
Topics:
SAS Base Questions |
1 Comment »
A