Google New or returning user — sign in with Google for instant login, no password needed. Sign in with Google Maybe later
Quiz title : Data Step - arrays
Question 1 of 10



How many number of variables will be present in the output dataset when the below code is run using the input dataset shown in the screenshot?

data class2;

    set sashelp.class;

    array avars[*] age height weight bmi;

run;