#14Multiple Choice
Given the SAS data set AGES:
AGES -
AGE -
---------
The variable AGE contains character values. The following SAS program is submitted: data subset; set ages; where age> 12; run;
How many observations are written out to the data set SUBSET?