Spring Certified Professional 2023 · Free Practice Question Easy
Question 29
________ in ACID refers to the property that ensures a transaction brings the database from one consistent state to another, preserving the integrity and validity of the data.
-
A
Durability
-
B
Isolation
-
C
Atomicity
-
D
Consistency
Reveal correct answer
Correct answer: D
Explanation
In the context of transaction processing, the acronym ACID refers to the four key properties of a transaction: atomicity, consistency, isolation, and durability.
Atomicity
All changes to data are performed as if they are a single operation. That is, all the changes are performed, or none of them are. For example, in an application that transfers funds from one account to another, the atomicity property ensures that, if a debit is made successfully from one account, the corresponding credit is made to the other account.
Consistency
Data is in a consistent state when a transaction starts and when it ends. For example, in an application that transfers funds from one account to another, the consistency property ensures that the total value of funds in both accounts is the same at the start and end of each transaction.
Isolation
The intermediate state of a transaction is invisible to other transactions. As a result, transactions that run concurrently appear to be serialized. For example, in an application that transfers funds from one account to another, the isolation property ensures that another transaction sees the transferred funds in one account or the other, but not in both, nor in either.
Durability
After a transaction successfully completes, changes to data persist and are not undone, even in the event of a system failure. For example, in an application that transfers funds from one account to another, the durability property ensures that the changes made to each
https://www.ibm.com/docs/en/cics-ts/5.4?topic=processing-acid-properties-transactions
Discussion
Think the marked answer is wrong, or have a better explanation? Share it below — comments appear after review.
