3. What is ACID in database transactions?
Explanation: ACID stands for Atomicity, Consistency, Isolation, and Durability. These are the four key properties that ensure database transactions are processed reliably. Atomicity ensures that all parts of a transaction are completed successfully or none at all. Consistency ensures that a transaction brings the database from one valid state to another. Isolation ensures that transactions do not interfere with each other. Durability guarantees that once a transaction is committed, it remains permanent, even in the event of a system crash.
Comments: