SAS Certified Adv Programmer 130 Questions (34)
The following SAS program is submitted:
data temp; array points { 3,2 } _temporary_ (10,20,30,40,50,60); score = points { 2,1 }; run;
Which one of the following is the value of the variable SCORE in the data set TEMP?
A. 10
B. 20
C. 30
D. 40
Topics:
SAS Adv Questions |
3 Comments »
C
C: because it is the second row and the first column
10 20
30 40
50 60