Answer :
Isolation, consistency, durability and atomicity are enforced by the dbms
A database management system (or DBMS) is essentially nothing more than a computerized data-keeping system.
What are properties of DBMS ?
Atomicity means that multiple operations can be grouped into a single logical entity, that is, other threads of control accessing the database will either see all of the changes or none of the changes.
- The consistent property of database states that every transaction sees a consistent database instance.
- Isolation shows that the data which is used at the time of execution of a transaction cannot be used by the second transaction until the first one is completed.
- The durability property is used to indicate the performance of the database's consistent state. It states that the transaction made the permanent changes.
Learn more about DBMS here:
https://brainly.com/question/13485235
#SPJ4