The question says that T1 and T2 accessed data item A. And we want that both the transactions should not conflict with each other while performing any operation on A. And we have to find out at what situation it will be possible that both the transactions will not conflict with each other while perfoming any operation on it.
So, conflict can occur through the following pairs :
1. Read-After-Write (Occuring in Option C)
2. Write-After-Read (Occuring in Option B)
3. Write-After-Write (Occuring in Option D)
Only in Read-After-Read pair, conflict is not possible (Occuring in Option A)
Therefore, the correct option is A.