Explanation: the questions is related to displaying time on report not to reads or write a date. So, you need to use date is in sas systeme option. here an example: options date pageno=1; proc print data=test.example; run; so you will get date on your printed report. if you don't need to display a date put nodate instead date
Explanation: Syntax NUMBER | NONUMBER Syntax Description NUMBER specifies that SAS print the page number on the first title line of each page of SAS output. NONUMBER specifies that SAS not print the page number on the first title line of each page of SAS output.
Question : 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? 1. Add the option MAXDEC = 2 to the MEANS procedure statement. 2. Add the statement MAXDEC = 7.2; in the MEANS procedure step. 3. Access Mostly Uused Products by 50000+ Subscribers 4. Add the option FORMAT = 7.2 option to the MEANS procedure statement.