Answer:
True.
Explanation:
True.
Let's say A = 5, and B = 10.
We need to swap the contents of A and B, so A will end up with 10 and B will end up with 5.
A = 5
B = 10
Introduce variable C.
C = A (now C contains 5)
A = B (now A contains 10)
B = C (now B contains 5)
In the last two steps above, you see that the values of A and B were swapped.