The following SAS program is submitted:options pageno = 1;proc print data = sasuser.houses;run;proc means data = sasuser.shoes;run;The report created by the PRINT procedure step generates 5 pages of output.What is the page number on the first page of the report generated by the MEANS procedure step?
Which one of the following SAS system options displays the time on a report?
Which one of the following SAS system options prevents the page number from appearing on a report?
The following SAS program is submitted:data work.new;length word $7;amount = 7;if amount = 5 then word = 'CAT';else if amount = 7 then word = 'DOG';else word = 'NONE!!!';amount = 5;run;Which one of the following represents the values of the AMOUNT and WORD variables?
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?
Unless specified, which variables and data values are used to calculate statistics in the MEANS procedure?