Respuesta :
Answer:
Option (b)
Explanation:
These are the right statements but the correct order would be :
temp=b;
b=a;
a=temp;
Value of b will be stored in temp variables and then value of a will be stored in b and afterwards value of temp variable to a. This is how value of a &b will be swapped. Swapping is needed in various codes many times. For example - while sorting an array, while reversing a string,etc.