The following SAS program is submitted:proc sort data = sasuser.houses out = houses;by style;run;proc print data = houses;run;Click on the Exhibit button to view the report produced.style bedrooms baths priceCONDO 2 1.5 80050 -3 2.5 793504 2.5 1271502 2.0 110700RANCH 2 1.0 64000 -3 3.0 866503 1.0 891001 1.0 34550SPLIT 1 1.0 65850 -4 3.0 944503 1.5 73650TWOSTORY 4 3.0 107250 -2 1.0 558502 1.0 692504 2.5 102950Which of the following SAS statement(s) create(s) the report?
A realtor has two customers. One customer wants to view a list of homes selling for less than $60,000. The other customer wants to view a list of homes selling for greater than $100,000.Assuming the PRICE variable is numeric, which one of the following PRINT procedure steps will select all desired observations?
The SAS data set BANKS is listed below:BANKS -name rateFirstCapital 0.0718 -DirectBank 0.0721 -VirtualDirect 0.0728 -The following SAS program is submitted:data newbank;do year = 1 to 3;set banks;capital + 5000;end;run;Which one of the following represents how many observations and variables will exist in the SAS data set NEWBANK?
The following SAS program is submitted:data work.clients;calls = 6;do while (calls le 6);calls + 1;end;run;Which one of the following is the value of the variable CALLS in the output data set?
The following SAS program is submitted:data work.pieces;do while (n lt 6);n + 1;end;run;Which one of the following is the value of the variable N in the output data set?
A raw data record is listed below:--------10-------20-------301999/10/25The following SAS program is submitted:data projectduration;infile 'file-specification';input date $ 1 - 10;run;Which one of the following statements completes the program above and computes the duration of the project in days as of today's date?