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;
