By admin | September 30, 2009

SAS Certified Base Programmer 123 Questions (97)

The following SAS program is submitted:

proc means data = sasuser.houses std mean max;
   var sqfeet;
run;

Which one of the following is needed to display the standard deviation with only two decimal places?

A. Add the option MAXDEC = 2 to the MEANS procedure statement.
B. Add the statement MAXDEC = 7.2; in the MEANS procedure step.
C. Add the statement FORMAT STD = 7.2; in the MEANS procedure step.
D. Add the option FORMAT = 7.2 option to the MEANS procedure statement.

One comment | Add One

  1. admin - 09/30/2009 at 2:59 pm

    A

Leave a Comment

Leave a Reply

Your email address will not be published.