The statement given below describes which of the ACID properties of tr...
Statement:
“The changes applied to the database by a committed transaction must persist in the database, and these changes must not be lost because of any failure”
ACID Properties:
A transaction in a database system must maintain Atomicity, Consistency, Isolation, and Durability − commonly known as ACID properties − in order to ensure accuracy, completeness, and data integrity.
Atomicity − This property states that a transaction must be treated as an atomic unit, that is, either all its operations are executed or none.
Consistency − The database must remain in a consistent state after any transaction. No transaction should have any adverse effect on the data residing in the database.
Isolation − In a database system where more than one transaction is being executed simultaneously and in parallel, the property of isolation states that all the transactions will be carried out and executed as if it is the only transaction in the system.
Durability − The database should be durable enough to hold all its latest updates even if the system fails or restarts.
Therefore, Durability is the answer.