SAS Base Programming for SAS 9 — Question 38

The following SAS program is submitted:
footnote1 Sales Report for Last Month;
footnote2 Selected Products Only;
footnote3 All Regions;
footnote4 All Figures in Thousands of Dollars;
proc print data = sasuser.shoes;
footnote2 All Products;
run;
Which footnote(s) is/are displayed in the report?

Answer options

Correct answer: B

Explanation

The correct answer is B because the last footnote defined in the program, 'All Products', replaces the previous footnote2, while the others remain unchanged. Therefore, the report displays 'Sales Report for Last Month' from footnote1 along with the last footnote 'All Products', without including footnote3 and footnote4.