Exit A00-215 SAS 9.4 Programming Fundamentals
Question 1 of 5
0% complete
Q1 Single choice

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;

Previous Next