Q1 Single choice Flag Which PROC PRINT step correctly displays only the first 10 observations in the data set? A proc print data=sashelp.class(obs=l10);run; B proc print data=sashelp.class;obs=10;run; C proc print data=sashelp.class obs=10;run; D proc print data=sashelp.class (oba?10' ); run; Correct answer