AIncorrect Answer

Keys have nothing to do with database locking. Locking is a mechanism to support serialisation.

close

BIncorrect Answer

Reading and writing is possible with or without locking. Locking is a mechanism to support serialisation.

close

CIncorrect Answer

Locking is a mechanism to support serialisation. Without locks, all simultaneous transactions can occur in ways which prevents serialisation. Two-Phase locking enforced serialisation, while still allowing trasactions which do not interfere with each other to occur simultaneously. All simultaneous transactions are not prevented unless they all interfere with each other.

close

DIncorrect Answer

Passwords have nothing to do with locking. Locking is a mechanism to support serialisation.

close

ECorrect Answer

Locking is a mechanism to support serialisation. If two-phase locking is used, serialisation can be enforced. If transactions are serialisable, then the results are consistent...

close

A B C D E TELL ME NEXT INDEX
 
 
Locking was introduced into databases so that
  1. Keys can be provided to maintain security.
  2. Reading and writing is possible.
  3. All simultaneous transactions are prevented.
  4. Passwords can be provided to maintain security
  5. Consistency can be enforced.