A00-215 SAS Certified Associate: Programming Fundamentals Using SAS 9.4

Loading demo links...

Showing 7–9 of 10 questions

Question 7

Which PROC PRINT step correctly displays only the first 10 observations in the data set?

Select an option, then click Submit answer.

  • proc print data=sashelp.class(obs=l10); run;

  • proc print data=sashelp.class; obs=10; run;

  • proc print data=sashelp.class obs=10; run;

  • proc print data=sashelp.class (oba«'10' )
    ; run;

Question 8

Which PROC SORT option allows you to create an output data set of the sorted data?

Select an option, then click Submit answer.

  • Data=

  • SORTOUT=

  • OUTPUT=

  • OUT=


Question 9

What step has correct syntax for the CONTENTS procedure?

Select an option, then click Submit answer.

  • Proc contents file=sashelp .shoes;
    Run;

  • Proc contents lib=sashelp data=shoes;
    Run;

  • Proc contents data=sashelp.shoes;
    Run;

  • Proc contents sashelp. Shoes;
    run;