Hi,
Run into a problem from the SAS Professional Prep Guide:
How many statements does the program below contain?
proc sql;
select grapes, oranges,
grapes + oranges as sumsales
from certadv.produce
order by sumsales;
quit;
a. two
b. three
c. four
d. five
Answer Key: a
I got this wrong because I picked b. I thought everything ends with a semicolon in SAS counts as a statement? Isn't that why they call it the QUIT statement?
Thanks