91. The following SAS program is submitted:
proc report data = work.houses nowd;
column style price;
where price < 100000;
title;
run;
Click the Exhibit button to view the output from the REPORT procedure.
Assume permanent variable labels have been assigned.
Which one of the following completes the program and produces the output
displayed in the exhibit?
A. define style / display width = 9;
define price / sum format = comma9. width = 10;
B. define style / width =