Quiz title : Proc summary
Question 1 of 6



How many number of observations will be present in the output dataset when the below code is run the input dataset shown in the screenshot?</p>

 

proc sort data=class out=sorted;

    by sex;

run;

 

proc summary data=sorted;

    by sex;

    var age;

    output out=stats01 n=n mean=mean;

run;