All questions of Transaction & Concurrency Control for Computer Science Engineering (CSE) Exam

Consider the following database schedule with two transactions, T1 and T2.
S = r2(X); r1(X); r2(Y); w1(X); r1(Y); w2(X); a1; a2;
where ri(Z) denotes a read operation by transaction Ti on a variable Z, wi(Z) denotes a write operation by Ti on a variable Z and ai denotes an abort by transaction Ti . Which one of the following statements about the above schedule is TRUE?
  • a)
    S is non-recoverable
  • b)
    S is recoverable, but has a cascading abort
  • c)
    S does not have a cascading abort
  • d)
    S is strict
Correct answer is option 'C'. Can you explain this answer?

Tanishq Yadav answered
As we can see in figure,
  • T2 overwrites a value that T1 writes
  • T1 aborts: its “remembered” values are restored.
  • Cascading Abort could have arised if - > Abort of T1 required abort of T2 but as T2 is already aborted , its not a cascade abort. Therefore, Option C
Option A - is not true because the given schedule is recoverable Option B - is not true as it is recoverable and avoid cascading aborts; Option D - is not true because T2 is also doing abort operation after T1 does, so NOT strict.

Suppose a database schedule S involves transactions T1, ....Tn. Construct the precedence graph of S with vertices representing the transactions and edges representing the conflicts. If S is serializable, which one of the following orderings of the vertices of the precedence graph is guaranteed to yield a serial schedule?
  • a)
    Topological order
  • b)
    Depth-first order
  • c)
    Breadth-first order
  • d)
    Ascending order of transaction indices
Correct answer is option 'A'. Can you explain this answer?

Ravi Singh answered
Cycle in precedence graph tells that schedule is not conflict serializable. DFS and BFS traversal of graph are possible even if graph contains cycle. And hence DFS and BFS are also possible for non serializable graphs. But Topological sort of any cyclic graph is not possible. Thus topological sort guarantees graph to be serializable. Option D is not valid because in a transaction with more indices might have to come before lower one. Also two non- conflicting schedule can occur simultaneously.

Which level of locking provides the highest degree of concurrency in a relational data base?
  • a)
    Page
  • b)
    Table
  • c)
    Row
  • d)
    Page, table and row level locking allow the same degree of concurrency
Correct answer is option 'C'. Can you explain this answer?

Anshu Mehta answered
  • ● Page level locking locks whole page i.e all rows therefore highly restrictive
    ● Table locking is mainly used for concurrency control with DDL operations
  • ●A row share table lock is the least restrictive, and has the highest degree of concurrency for a table.It indicates the transaction has locked rows in the table and intends to update them. 
    Therefore Row level provides highest level of concurrency.Hence Answer is C

Let ri(z) and wi(z) denote read and write operations respectively on a data item z by a transaction Ti. Consider the following two schedules.
S1 : r1(x) r1(y) r2(x) r2(y) w2(y) w1(x)
S2 : r1(x) r2(x) r2(y) w2(y) r1(y) w1(x)
Which one of the following options is correct?
  • a)
    S1 is conflict serializable, and S2 is not conflict serializable.
  • b)
    S1 is not conflict serializable, and S2 is conflict serializable.
  • c)
    Both S1 and S2 are conflict serializable.
  • d)
    Neither S1 nor S2 is conflict serializable.
Correct answer is option 'B'. Can you explain this answer?

Explanation:

Both schedules S1 and S2 are not conflict serializable because they contain conflicting operations.

Schedule S1:

S1 : r1(x) r1(y) r2(x) r2(y) w2(y) w1(x)

Conflict Serializability:

A schedule is conflict serializable if its precedence graph is acyclic. The precedence graph can be constructed by considering the conflicting operations in the schedule.

Precedence Graph for S1:


r1(x) r2(x) w2(y)
/ \ /
/ \ /
r1(y) r2(y)
\ / \
\ / \
w1(x)


Cycle in Precedence Graph:

From the precedence graph, it is clear that there is a cycle present in the graph (r1(x) -> w1(x) -> r1(y) -> r2(y) -> w2(y) -> r2(x) -> r1(x)). Therefore, schedule S1 is not conflict serializable.

Schedule S2:

S2 : r1(x) r2(x) r2(y) w2(y) r1(y) w1(x)

Precedence Graph for S2:


r1(x) r2(x) w2(y)
/ \ /
/ \ /
r1(y) r2(y)
\ / \
\ / \
w1(x)


No Cycle in Precedence Graph:

From the precedence graph, it is clear that there is no cycle present in the graph. Therefore, schedule S2 is conflict serializable.

Conclusion:

Based on the analysis, the correct option is (b) S1 is not conflict serializable, and S2 is conflict serializable.

Which one of the following is NOT a part of the ACID properties of database transactions?
  • a)
    Atomicity
  • b)
    Consistency
  • c)
    Isolation
  • d)
    Deadlock-freedom
Correct answer is option 'D'. Can you explain this answer?

Sudhir Patel answered
ACID properties of database transaction:
  • Atomicity: The entire transaction takes place at once or doesn’t happen at all.
  • Consistency: The database must be consistent before and after the transaction.
  • Isolation: Multiple transactions occur independently without interference.
  • Durability: The changes of a successful transaction occurs even if the system failure occurs.
So, deadlock freedom is not the ACID property of database transaction.

Consider the following partial Schedule S involving two transactions T1 and T2. Only the read and the write operations have been shown. The read operation on data item P is denoted by read(P) and the write operation on data item P is denoted by write(P)
Suppose that the transaction T1 fails immediately after time instance 9. Which one of the following statements is correct?
  • a)
    T2 must be aborted and then both T1 and T2 must be re-started to ensure transaction atomicity
  • b)
    Schedule S is non-recoverable and cannot ensure transaction atomicity
  • c)
    Only T2 must be aborted and then re-started to ensure transaction atomicity
  • d)
    Schedule S is recoverable and can ensure atomicity and nothing else needs to be done
Correct answer is option 'B'. Can you explain this answer?

Option 1: Incorrect
As, it is not giving any surety about T1, there is no commit in T1.  Rolling back of T2 may not be required in this.
Option 2: Correct
In given schedule, T2 is reading data item A that is written by T1 so it means commit of T1 must before the commit of T2, but here in this schedule it is not happening. So, this is non – recoverable schedule. In this after T1 fails, if we want to undo all the operations, still we cannot undo a committed transaction. So, it cannot ensure transaction atomicity.
Option 3: Incorrect
It is redoing all the operations of T2. But in this, it is reading data item A that is written by T1 and T1 is not committed. So, it results in dirty read problem.
Option 4: Incorrect
Since Schedule S is non – recoverable. So, it is incorrect. Also, it cannot ensure atomicity.
 

Consider the following transaction with data items P and Q initialized to zero:
T1 : read  (P) ;
read  (Q) ;
if P = 0 then Q : = Q + 1;
write (Q) ;
T2 : read  (Q) ;
read (P) ;
if Q = 0 then P : = P + 1 ;
write  (P) ;
Q. Any non-serial interleaving of T1 and T2 for concurrent execution leads to
  • a)
    A serializable schedule
  • b)
    A conflict serializable schedule 
  • c)
    A schedule for which a precedence graph cannot be drawn
  • d)
    A schedule that is not conflict serializable
Correct answer is option 'D'. Can you explain this answer?

Explanation:

Non-serial interleaving:
- In the given transaction T1 and T2, the operations are interleaved in a non-serial manner, meaning they are executed concurrently or in an order different from the original sequence.

Conflict Serializable Schedule:
- A schedule is said to be conflict serializable if it is equivalent to a serial schedule, meaning the final result is the same as if the transactions were executed in serial order.
- In this case, the given non-serial interleaving of T1 and T2 does not result in a conflict serializable schedule.

Precedence Graph:
- In conflict serializability, a precedence graph can be drawn to determine if the schedule is conflict serializable.
- However, in this case, a precedence graph cannot be drawn for the given schedule due to conflicting operations.

Conclusion:
- The non-serial interleaving of T1 and T2 leads to a schedule that is not conflict serializable. The conflicting operations and lack of a precedence graph indicate that the schedule does not maintain the same final result as a serial execution.

Which of the following statement is/are incorrect? 
A: A schedule following strict two phase locking protocol is conflict serializable as well as recoverable.
B: Checkpoint in schedules are inserted to ensure recoverability.
  • a)
    Only 1
  • b)
    Only 2
  • c)
    Both 1 and 2
  • d)
    None
Correct answer is option 'B'. Can you explain this answer?

Basic two phase locking protocol ensures only conflict serializability and strict two phase locking protocol ensures recoverability as well. So statement A is correct. Checkpoints are inserted to minimize the task of undo-redo in recoverability. So, statement B is not correct. Hence correct option B is correct choice.

If a schedule S can be transformed into a schedule S’ by a series of swaps of non-conflicting instructions, then S and S’ are
  • a)
    Non conflict equivalent
  • b)
    Equal
  • c)
    Conflict equivalent
  • d)
    Isolation equivalent
Correct answer is option 'C'. Can you explain this answer?

Raghav Sharma answered
Yes, if a schedule S can be transformed into a schedule S' by a series of valid operations, then it is possible to transform S into S'. This transformation can involve rearranging the order of operations, rescheduling activities, or making adjustments to the timing or duration of tasks. The specific transformations will depend on the constraints and requirements of the schedule, but as long as they maintain the overall integrity and consistency of the schedule, it is possible to transform S into S'.

The statement given below describes which of the ACID properties of transactions?
“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”
  • a)
    Durability 
  • b)
    Atomicity 
  • c)
    Isolation 
  • d)
    Consistency preservation
Correct answer is option 'A'. Can you explain this answer?

Akshay Singh answered
Explanation:

Durability:
Durability is one of the ACID properties of transactions in database systems. It ensures that once a transaction is committed, the changes made by that transaction persist in the database even in the event of a system failure. This means that the changes must be permanent and cannot be lost or undone due to any kind of failure.

Explanation of the given statement:
The 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" perfectly describes the durability property of transactions. It emphasizes the importance of ensuring that the changes made by a committed transaction are durable and remain in the database even if there is a system failure.

Importance of Durability:
- Durability is crucial for maintaining the integrity and consistency of the database.
- It ensures that the database remains in a consistent state even after unexpected events such as power outages or hardware failures.
- Without durability, users may experience data loss or inconsistencies in the database, leading to potential errors and loss of trust in the system.
In conclusion, durability is a critical aspect of transaction processing in databases, as it guarantees that the changes made by committed transactions are permanent and will not be lost due to any failure.

Consider the transactions T1, T2, and T3 and the schedules S1 and S2 given below.
T1: r1(X); r1(Z); w1(X); w1(Z)
T2: r2(Y); r2(Z); w2(Z)
T3: r3(Y); r3(X); w3(Y)
S1: r1(X); r3(Y); r3(X); r2(Y); r2(Z);
    w3(Y); w2(Z); r1(Z); w1(X); w1(Z)
S2: r1(X); r3(Y); r2(Y); r3(X); r1(Z);
    r2(Z); w3(Y); w1(X); w2(Z); w1(Z) 
  • a)
    Only S1 is conflict-serializable.
  • b)
    Only S2 is conflict-serializable.
  • c)
    Both S1 and S2 are conflict-serializable.
  • d)
    Neither S1 nor S2 is conflict-serializable.
Correct answer is option 'A'. Can you explain this answer?

Ujwal Nambiar answered
Explanation:

Conflict Serializable Schedules:
- Conflict serializability is a property of a schedule that ensures that the final result of the schedule is the same as the result of some serial execution of the transactions in the schedule.
- A schedule is conflict-serializable if it is equivalent to a serial schedule of the same transactions, where the order of non-conflicting operations is preserved.

Checking for Conflict Serializability:
To determine if a schedule is conflict-serializable, we can use the precedence graph method. We draw a directed edge from Ti to Tj if there is a conflicting operation between Ti and Tj in the schedule.

Analysis:
- For schedule S1:
- The precedence graph for S1 is T1 -> T3, T3 -> T2, T2 -> T1.
- As there is a cycle in the precedence graph, the schedule S1 is not conflict-serializable.
- For schedule S2:
- The precedence graph for S2 is T1 -> T3, T3 -> T2, T2 -> T1.
- As there is a cycle in the precedence graph, the schedule S2 is not conflict-serializable.
Therefore, only schedule S1 is conflict-serializable, according to the precedence graph method.

Suppose a database schedule S involves transactions T1, …,Tn. Construct the precedence graph of S with vertices representing the transactions and edges representing the conflicts. If S is serializable, which one of the following orderings of the vertices of the precedence graph is guaranteed to yield a serial schedule? 
  • a)
    Topological order
  • b)
    Depth-first order
  • c)
    Breadth-first order
  • d)
    Ascending order of transaction indices
Correct answer is option 'A'. Can you explain this answer?

Athira Reddy answered
T2, and T3. Let's assume that T1 and T2 are executed concurrently, and T3 is executed after T2.

A serial schedule for the given transactions would be T1, T2, T3. In this schedule, T1 is executed first, followed by T2, and finally T3. Each transaction is executed in its entirety before the next transaction begins. This ensures that the transactions are executed one after the other, without any concurrency.

On the other hand, a concurrent schedule for the given transactions could be T1, T2, T3. In this schedule, T1 and T2 are executed concurrently, meaning that their operations can be interleaved. For example, T1 may perform some operations, then T2 may perform some operations, and so on. Finally, T3 is executed after T2 completes.

It is important to note that there can be multiple possible concurrent schedules for a given set of transactions, depending on how their operations are interleaved. Concurrent schedules can provide benefits such as improved performance and resource utilization but may also introduce concurrency-related issues such as conflicts and consistency problems.

Consider the following two phase locking protocol. Suppose a transaction T accesses (for read or write operations), a certain set of objects {O1,...,Ok}. This is done in the following manner:
Step 1. T acquires exclusive locks to O1, . . . , Ok in increasing order of their addresses.
Step 2. The required operations are performed. 
Step 3. All locks are released. This protocol will
  • a)
    guarantee serializability and deadlock-freedom
  • b)
    guarantee neither serializability nor deadlock-freedom
  • c)
    guarantee serializability but not deadlock-freedom
  • d)
    guarantee deadlock-freedom but not serializability
Correct answer is option 'A'. Can you explain this answer?

The above scenario is Conservative 2PL(or Static 2PL). In Conservative 2PL protocol, a transaction has to lock all the items it access before the transaction begins execution. It is used to avoid deadlocks. Also, 2PL is  conflict serializable, therefore it guarantees serializability. Therefore option A Advantages of Conservative 2PL :
  • No possibility of deadlock.
  • Ensure serializability.
Drawbacks of Conservative 2PL :
  • Less throughput and resource utilisation because it holds the resources before the transaction begins execution.
  • Starvation is possible since no restriction on unlock operation.
  • 2pl is a deadlock free protocol but it is difficult to use in practice.

A ___________of the transactions can be obtained by finding a linear order consistent with the partial order of the precedence graph.
  • a)
    Serializability order
  • b)
    Direction graph
  • c)
    Precedence graph
  • d)
    Scheduling scheme
Correct answer is option 'A'. Can you explain this answer?

Sankar Iyer answered
The correct answer is option 'A' - Serializability order.

Explanation:
A serializability order is a linear order of transactions that is consistent with the partial order of the precedence graph. To understand this, let's first define some terms:

1. Transactions: In databases, a transaction is a logical unit of work that consists of one or more database operations, such as reads and writes.

2. Precedence graph: In concurrency control, a precedence graph is a directed graph that represents the order in which transactions are executed based on their dependencies. Each transaction is represented by a node, and there is an edge from transaction T1 to transaction T2 if T1 needs to be completed before T2 can start.

Now, let's break down the options and understand why option 'A' is the correct answer:

a) Serializability order:
- A serializability order is a linear order of transactions that is consistent with the partial order of the precedence graph.
- It represents a valid execution sequence of the transactions, where each transaction is executed one after another in a consistent order.
- Finding a serializability order ensures that the database remains in a consistent state throughout the execution of transactions.
- This order is important for ensuring isolation and maintaining the ACID properties of the database.

b) Direction graph:
- The term "Direction graph" is not a commonly used term in the context of databases or transaction processing.
- It is likely a distractor option and does not relate directly to the question or the concept of finding a linear order consistent with the partial order of the precedence graph.

c) Precedence graph:
- The precedence graph represents the order in which transactions are executed based on their dependencies.
- It helps determine conflicts and ensures that transactions are executed in a valid order.
- While the precedence graph is used to find the serializability order, it is not the answer itself.

d) Scheduling scheme:
- A scheduling scheme refers to an algorithm or strategy used to determine the order in which transactions are executed.
- While a scheduling scheme can consider the precedence graph and aim for a serializability order, it is not the direct answer to the question.

In conclusion, the correct answer is option 'A' - Serializability order because it directly relates to finding a linear order consistent with the partial order of the precedence graph, ensuring a valid execution sequence of the transactions.

Which property of database transaction create an allusion than only 1 transaction is executed in system in spite of more than one transaction is executed in parallel manner?
  • a)
    Atomicity
  • b)
    Consistency
  • c)
    Isolation
  • d)
    Durability
Correct answer is option 'C'. Can you explain this answer?

Sankar Sarkar answered
Isolation

The property of isolation in database transactions ensures that concurrent transactions do not interfere with each other, creating the illusion that only one transaction is executed in the system, even though multiple transactions may be executed in parallel. It provides a way to maintain the integrity and consistency of the data in a multi-user environment.

Concurrency Control

Concurrency control is the mechanism used to manage concurrent access to the database by multiple transactions. It ensures that the execution of transactions is properly synchronized to avoid conflicts and maintain data consistency.

Isolation Levels

There are different isolation levels defined in database systems to control the level of isolation provided by transactions. The most commonly used isolation levels are:

1. Read Uncommitted: This is the lowest isolation level where transactions can read uncommitted changes made by other transactions. It does not provide any isolation and can lead to dirty reads, non-repeatable reads, and phantom reads.

2. Read Committed: In this isolation level, transactions can only read committed data. It avoids dirty reads but can still lead to non-repeatable reads and phantom reads.

3. Repeatable Read: This isolation level guarantees that a transaction will see a consistent snapshot of the database throughout its execution. It prevents dirty reads and non-repeatable reads, but phantom reads can still occur.

4. Serializable: This is the highest isolation level that provides full isolation between transactions. It ensures that transactions are executed as if they were executed one after another, in a serial manner. It prevents dirty reads, non-repeatable reads, and phantom reads, but it can lead to a high degree of contention and may impact performance.

Locking Mechanisms

To achieve isolation, database systems use locking mechanisms to control concurrent access to data. Locks can be obtained on different levels (e.g., row-level, table-level) and can be shared or exclusive. Transactions acquire locks before accessing data and release them after completing the operation.

Concurrency Control Techniques

To ensure isolation and manage concurrent access, various concurrency control techniques are used, such as:

1. Locking: Transactions acquire locks on data items to prevent other transactions from accessing or modifying them concurrently.

2. Timestamp Ordering: Transactions are assigned timestamps, and their execution order is determined based on these timestamps. Conflicts are resolved by aborting and restarting transactions.

3. Multiversion Concurrency Control (MVCC): Each transaction sees a snapshot of the database at the start of its execution. Changes made by other transactions are stored as separate versions, allowing concurrent access without conflicts.

Conclusion

The isolation property in database transactions ensures that concurrent transactions do not interfere with each other, providing the illusion that only one transaction is executed in the system. Concurrency control mechanisms, such as locking, timestamp ordering, and MVCC, are used to manage concurrent access and maintain data consistency. The choice of isolation level depends on the application requirements and trade-offs between isolation and performance.

All Oracle transactions obey the basic properties of a database transaction. What is the name of the following property?
‘All tasks of a transaction are performed or none of them are. There are no partial transactions.’
  • a)
    Atomicity
  • b)
    Durability
  • c)
    Consistency
  • d)
    Isolation
Correct answer is option 'A'. Can you explain this answer?

Varun Khanna answered
Atomicity:
Atomicity is one of the ACID properties that ensures that all tasks within a transaction are performed as a single unit. This means that either all tasks are completed successfully or none of them are. There are no partial transactions in Oracle database transactions.

Explanation:
- When a transaction is initiated in Oracle, all the tasks within that transaction must be executed in their entirety.
- If any part of the transaction fails (due to errors, crashes, or other issues), the entire transaction is rolled back, and the database is restored to its state before the transaction started.
- This ensures that the database remains in a consistent state and does not end up with incomplete or partially completed transactions.
- Atomicity guarantees data integrity and prevents the database from being left in a state where only some parts of the transaction have been applied.

Example:
For example, consider a bank transfer transaction where money is being transferred from one account to another. If the debit from one account is successful but the credit to the other account fails, atomicity ensures that the entire transaction is rolled back, and the original state of both accounts is restored.

Conclusion:
In Oracle transactions, atomicity plays a crucial role in maintaining data integrity and ensuring that the database remains consistent. It guarantees that transactions are either fully completed or not at all, thereby preventing any inconsistencies or partial updates in the database.

Which of the following concurrency control protocols ensure both conflict serialzability and freedom from deadlock?
I. 2-phase locking
II. Time-stamp ordering
  • a)
    I only
  • b)
    II only
  • c)
    Both I and II
  • d)
    Neither I nor II
Correct answer is option 'B'. Can you explain this answer?

Prerna Joshi answered
2 Phase Locking (2PL) is a concurrency control method that guarantees serializability. The protocol utilizes locks, applied by a transaction to data, which may block (interpreted as signals to stop) other transactions from accessing the same data during the transaction’s life. 2PL may be lead to deadlocks that result from the mutual blocking of two or more transactions. See the following situation, neither T3 nor T4 can make progress.

Timestamp-based concurrency control algorithm is a non-lock concurrency control method. In Timestamp based method, deadlock cannot occur as no transaction ever waits.

Consider the following log sequence of two transactions on a bank account, with initial balance 12000, that transfer 2000 to a mortgage payment and then apply a 5% interest.
  1. T1 start
  2. T1 B old=12000 new=10000
  3. T1 M old=0 new=2000
  4. T1 commit
  5. T2 start
  6. T2 B old=10000 new=10500
  7. T2 commit 
Suppose the database system crashes just before log record 7 is written. When the system is restarted, which one statement is true of the recovery procedure?
  • a)
    We must redo log record 6 to set B to 10500
  • b)
    We must undo log record 6 to set B to 10000 and then redo log records 2 and
  • c)
    3.We need not redo log records 2 and 3 because transaction T1 has committed.
  • d)
    We can apply redo and undo operations in arbitrary order because they are idempotent
Correct answer is option 'B'. Can you explain this answer?

We must undo log record 6 to set B to 10000 and then redo log records 2 and 3 bcoz system fail before commit operation. So we need to undone active transactions(T2) and redo committed transactions (T1) Note: Here we are not using checkpoints. Checkpoint : Checkpoint is a mechanism where all the previous logs are removed from the system and stored permanently in a storage disk. Checkpoint declares a point before which the DBMS was in consistent state, and all the transactions were committed. Recovery: When a system with concurrent transactions crashes and recovers, it behaves in the following manner − =>The recovery system reads the logs backwards from the end to the last checkpoint. =>It maintains two lists, an undo-list and a redo-list. =>If the recovery system sees a log with and or just , it puts the transaction in the redo-list. =>If the recovery system sees a log with but no commit or abort log found, it puts the transaction in undo-list. All the transactions in the undo-list are then undone and their logs are removed. All the transactions in the redo-list and their previous logs are removed and then redone before saving their logs. So Answer is B redo log records 2 and 3 and undo log record 6

Consider the following log sequence of two transactions on a bank account, with initial balance 12000, that transfer 2000 to a mortgage payment and then apply a 5% interest.
1. T1 start
2. T1 B old=12000 new=10000
3. T1 M old=0 new=2000
4. T1 commit
5. T2 start
6. T2 B old=10000 new=10500
7. T2 commit
Q. Suppose the database system cra shes just before log record 7 is written. When the system is restarted, which one statement is true of the recovery procedure?
  • a)
    We must redo log record 6 to set B to 10500
  • b)
    We must undo log record 6 to set B to 10000 and then redo log records 2 and 3.
  • c)
    We need not redo log records 2 and 3 because transaction T1 has committed.
  • d)
    We can apply redo and undo operations in arbitrary order because they are idempotent
Correct answer is option 'B'. Can you explain this answer?

Maheshwar Das answered
We must undo log record 6 to set B to 10000 and then redo log records 2 and 3 bcoz system fail before commit operation. So we need to undone active transactions(T2) and redo committed transactions (T1) Note:Here we are not using checkpoints. Checkpoint : Checkpoint is a mechanism where all the previous logs are removed from the system and stored permanently in a storage disk. Checkpoint declares a point before which the DBMS was in consistent state, and all the transactions were committed. Recovery: When a system with concurrent transactions crashes and recovers, it behaves in the following manner − =>The recovery system reads the logs backwards from the end to the last checkpoint. =>It maintains two lists, an undo-list and a redo-list. =>If the recovery system sees a log with and or just , it puts the transaction in the redo-list. =>If the recovery system sees a log with but no commit or abort log found, it puts the transaction in undo-list. All the transactions in the undo-list are then undone and their logs are removed. All the transactions in the redo-list and their previous logs are removed and then redone before saving their logs. So Answer is B redo log records 2 and 3 and undo log record 6

ACID properties of a transactions are
  • a)
    Atomicity, consistency, isolation, database
  • b)
    Atomicity, consistency, isolation, durability
  • c)
    Atomicity, consistency, integrity, durability
  • d)
    Atomicity, consistency, integrity, database
Correct answer is option 'B'. Can you explain this answer?

Sudhir Patel answered
Atomicity requires that each transaction be "all or nothing": if one part of the transaction fails, then the entire transaction fails, and the database state is left unchanged.
The consistency property ensures that any transaction will bring the database from one valid state to another.
The isolation property ensures that the concurrent execution of transactions results in a system state that would be obtained if transactions were executed sequentially.
The durability property ensures that once a transaction has been committed, it will remain so, even in the event of power loss, crashes, or errors.

The set of ________ in a precedence graph consists of all the transactions participating in the schedule
  • a)
    Vertices
  • b)
    Edges
  • c)
    Directions
  • d)
    None of the mentioned
Correct answer is option 'A'. Can you explain this answer?

Sudhir Patel answered
The set of vertices in a precedence graph consists of all the transactions participating in the schedule. Precedence graph is a simple and efficient way of determining conflict serializability of the schedule.

In Database management system ACID property refers to:
  • a)
    Authenticity, Consistency, Isolation, and Durability
  • b)
    Atomicity, Consistency, Isolation, and Durability
  • c)
    Atomicity, Consistency, Integrity, and Durability
  • d)
    Atomicity, Confidentiality, Isolation, and Durability
Correct answer is option 'B'. Can you explain this answer?

Sudhir Patel answered
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.

Consider the following transactions with data items P and Q initialized to zero:
Any non-serial interleaving of T1 and T2 for concurrent execution leads to
  • a)
    A serializable schedule
  • b)
    A schedule that is not conflict serializable
  • c)
    A conflict serializable schedule
  • d)
    A schedule for which a precedence graph cannot be drawn
Correct answer is option 'B'. Can you explain this answer?

Ajith Kiruba answered
Answer (B)
Two or more actions are said to be in conflict if:
1) The actions belong to different transactions.
2) At least one of the actions is a write operation.
3) The actions access the same object (read or write).

The schedules S1 and S2 are said to be conflict-equivalent if the following conditions are satisfied:
1) Both schedules S1 and S2 involve the same set of transactions (including ordering of actions within each transaction).
2) The order of each pair of conflicting actions in S1 and S2 are the same.

A schedule is said to be conflict-serializable when the schedule is conflict-equivalent to one or more serial schedules.

In the given scenario, there are two possible serial schedules:
1) T1 followed by T2
2) T2 followed by T1.
In both of the serial schedules, one of the transactions reads the value written by other transaction as a first step. Therefore, any non-serial interleaving of T1 and T2 will not be conflict serializable.

Consider the transactions T1, T2, and T3 and the schedules S1 and S2 given below.
Q. Which one of the following statements about the schedules is TRUE?
  • a)
    Only S1 is conflict-serializable.
  • b)
    Only S2 is conflict-serializable.
  • c)
    Both S1 and S2 are conflict-serializable.
  • d)
    Neither S1 nor S2 is conflict-serializable.
Correct answer is option 'A'. Can you explain this answer?

Divya Kaur answered
For conflict serializability of a schedule(which gives same effect as a serial schedule) we should check for conflict operations, which are Read-Write, Write-Read and Write-Write between each pair of transactions, and based on those conflicts we make a precedence graph, if the graph contains a cycle, it's not a conflict serializable schedule. To make a precedence graph: if Read(X) in Ti followed by Write(X) in Tj (hence a conflict ), then we draw an edge from Ti to Tj (Ti -> Tj) If we make a precedence graph for S1 and S2 , we would get directed edges for S1 as T2->T1, T2->T3, T3->T1, and for S2 as T2->T1, T2->T3, T3->T1, T1->T2. In S1 there is no cycle, but S2 has a cycle. Hence only S1 is conflict serializable. Note : The serial order for S1 is T2 -> T3 -> T1.

Consider three data items D1, D2 and D3 and the following execution schedule of transactions T1, T2 and T3. In the diagram, R(D) and W(D) denote the actions reading and writing the data item D respectively.
Which of the following statements is correct?
  • a)
    The schedule is serializable as T2; T3; T1
  • b)
    The schedule is serializable as T2; T1; T3
  • c)
    The schedule is serializable as T3; T2; T1
  • d)
    The schedule is not serializable
Correct answer is option 'D'. Can you explain this answer?

Gate Gurus answered
T1 and T2 have conflicting operations between them forming a cycle in the precedence graph. R(D2) of T2, and W(D2) of T1 ( Read-Write Conflict) R(D1) of T1, and W(D1) of T2 ( Read-Write Conflict) Hence in the precedence graph of the schedule there would be a cycle between T1 and T2 vertices. Therefore not a serializable schedule.

Chapter doubts & questions for Transaction & Concurrency Control - Database Management System (DBMS) 2025 is part of Computer Science Engineering (CSE) exam preparation. The chapters have been prepared according to the Computer Science Engineering (CSE) exam syllabus. The Chapter doubts & questions, notes, tests & MCQs are made for Computer Science Engineering (CSE) 2025 Exam. Find important definitions, questions, notes, meanings, examples, exercises, MCQs and online tests here.

Chapter doubts & questions of Transaction & Concurrency Control - Database Management System (DBMS) in English & Hindi are available as part of Computer Science Engineering (CSE) exam. Download more important topics, notes, lectures and mock test series for Computer Science Engineering (CSE) Exam by signing up for free.

Signup to see your scores go up within 7 days!

Study with 1000+ FREE Docs, Videos & Tests
10M+ students study on EduRev