The following code is executed multiple times:
data casuser.eurorders;
set casuser.orders end=eof;
if Continent="Europe" then EurOrders+1;
if eof=1 then output;
keep EurOrders;
run;
proc print data=casuser.eurorders;
run;
Will the rows in the output table be sorted the same way for each execution and why?
A. Yes, because only one row will be printed.
B. Yes, because by default CAS sorts the output table.
C. No, because each thread inserts a row into the casuser.eurorders table when it ends.
D. No, because the CAS Controller randomly reads the casuser.eurorders table when processing the proc print.