In JDBC transactions, auto-commit must be disabled BEFORE beginning transactional operations, not after. Setting setAutoCommit(false) before the transaction ensures statements are grouped. Setting it after would be meaningless as the transaction would have already executed in auto-commit mode. Options A, B, D, and E describe true transaction characteristics.