By admin | December 23, 2009

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

3 comments | Add One

  1. admin - 12/23/2009 at 10:51 am

    C

  2. Consty - 02/20/2013 at 11:53 pm

    C: because it is the second row and the first column

  3. chinawokee - 07/9/2014 at 6:52 pm

    10 20
    30 40
    50 60

Leave a Comment

Leave a Reply

Your email address will not be published.