| A1: | A, B, and D. Stored procedures are much faster than passing SQL or calling a view because they are precompiled in the database server. Therefore, A is correct. B is also correct, because stored procedures can hide certain columns and introduce layers of abstraction. D is correct, as stored procedures are indeed more powerful. C and E are not correct, because stored procedures can be difficult to create and are not standard across database platforms. |