The following SAS program is submitted:
data temp:
array points { 2,3 } (10,15,20,25,30,35);
run;
What impact does the ARRAY statement have in the program Data vector (PDV)?
- The variables named POINTS10, POINTS15,POINTS20,POINTS25,POINTS30, POINTS35 are created in the PDV
- No variables are created in the PDV
- The variables named POINTS1, POINTS2, POINTS4, POINTS5, POINTS6 are created in the PDV
- The variables named POINTS11, POINTS12, POINTS13, POINTS21, POINTS22, POINTS23 are created in the PDV
Reveal Solution Next Question