Exhibit:
You are developing an account management system for First National Bank. The Layout Editor for the Customer form is shown in the exhibit.
The three buttons on the form invoke separate forms to enter deposits and withdrawals for the customer’s checking, savings, and money market accounts. Often deposit and withdrawals to these accounts are accomplished as part of a single transaction, so they must all be committed together or all rolled back if the commit fails.
How should you code the Checking button?
A.
OPEN_FORM(‘Checking’);
B.
OPEN_FORM(‘checking,session);
C.
OPEN_FORM(‘Checking’, SESSION,ACTIVATE);
D.
OPEN_FORM(‘Checking’, SESSION,NO_ACTIVATE);