Explain the Deferred Update
The deferred update methods do not physically update the database on disk till after a transaction reaches its commit point; after that the updates are recorded in the database. Alternatively, deferred update methods postpone any actual updating of the database on disk until a transaction arrives its commit point. Transaction force-writes the log to disk previous to recording the updates in the database.