Q. Consider the following code snippet
[x,y]=[y,x];
What is the result of the above code snippet?
β
Correct Answer: (C)
Flashes an error
Explanation: The above code snippet swaps the value of the two variables.