This question is about when two transactions touching the same data item A can be considered non-conflicting. In concurrency control, an operation pair conflicts only when the two operations belong to different transactions, act on the same item, and at least one of them is a write, because only then does the execution order affect the result.
Only the read-read case is free of conflict, because it is the only pairing where neither operation can alter what the other one observes or leaves behind.
Let's summarize:
So the statement that must be true for $T_1$ and $T_2$ to not conflict on A is that both only read A, option (A).