The following SAS program is submitted:data numrecords;infile file specification;input@1 patient $15.relative$ 16-26@;if relative = children theninput @54 diagnosis $15. @;else if relative = parents theninput @28 doctor $15.clinic $ 44-53@54 diagnosis $15. @;input age;run;How many raw data records are read during each iteration of the DATA step execution?
Given the SAS data set ONE:Given the SAS data set WORK.ONE:The following SAS program is submitted:Which report is produced?
After a SAS program is submitted, the following is written to the SAS log:105 data january;106 set allmonths(keep = product month num_sold cost);107 if month = Jan then output january;108 sales = cost * num_sold;109 keep = product sales;------ERROR 22-322: Syntax error, expecting one of the following:!,!!, &, *,**, +, -,/, <,< =, <>, =, >, ><, >=,AND, EQ, GE, GT, IN, LE, LT, MAX, MIN, NE, NG, NL,NOTIN, OR,^=,|,II,110 run;What changes should be made to the KEEP statement to correct the errors in the LOG?
The following SAS program is submitted:data combine;prefix=505;middle=6465 ;end=09090;<insert statement here>;run;Which statement successfully completes the program so that TOTAL has a value of 505-6465-09090?
The following SAS program is submitted:<insert ODS statement here>proc means data = sasuser.shoes;where product in (Sandal , Slipper , Boot);run;<insert ODS statement here>Which ODS statements complete the program and send the report to an HTML file?
The SAS data set SASUSER.HOUSES contains a variable PRICE which has been assigned a permanent label of "Asking Price". Which SAS program temporarily replaces the label "Asking Price" with the label "Sale Price" in the output?