In Oracle Database, when a transaction is not committed, the changes it makes are not visible to other sessions. This is due to Oracle's read consistency model, which means that Andrew will not be able to see the changes you have made until they are committed. Option A is correct because, in Oracle, another session can modify rows that have not been locked by an uncommitted transaction. Option C is incorrect because, as per Oracle's read consistency, the changes made by an uncommitted transaction are not visible to other users. Option D is incorrect because Andrew can perform INSERT, UPDATE, or DELETE operations on the rows that you have not modified. Option E is incorrect because, while Andrew will be able to SELECT from the table, he will still be able to modify rows that are not locked by your uncommitted update. Reference: Oracle Documentation on Transactions: Transactions Oracle Documentation on Read Consistency: Read Consistency