Atomicity, it’s simple either all operations in database occur, or nothing occurs. Consistency, ensures that the database is in a valid state before and after the transaction. Isolation, any transaction is independent of another, and your result doesn’t depends of any other. Durability, the...