[x,y]=[y,x];
What is the result of the above code snippet?
Throws exception
Swap the value of the two variables
Flashes an error
Creates a new reference object
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option C
Explanation :
The above code snippet swaps the value of the two variables.
Be The First To Comment