The following schedule is serializable. R1(A), W1(A), R2(C),…

The following schedule is serializable. R1(A), W1(A), R2(C), W2(C), R2(B), W2(B), R1(C), R1(B), W1(B)  Note: R, W refer to Read and Write operations. A, B, C refer to the data items. 1, 2 refer to the transaction id. For example, R1(A) means Transaction 1 reads A. 

The following schedule is unrecoverable: R1(A), R1(B), R2(A)…

The following schedule is unrecoverable: R1(A), R1(B), R2(A), W2(B), Commit_2, W1(B), Abort_1.                          Note: R, W refer to Read and Write operations. A, B, C refer to the data items. 1, 2 refer to the transaction id. For example, R1(A) means Transaction 1 reads A.  Commit_2 means Transaction 2 commits.  Abort_1 means Transaction 1 aborts.