UiPath Interview Question

If you have two variables x and y, how to switch their values without using a third variable?

Interview Answer

Anonymous

Feb 16, 2021

x = x + y y = x - y x = x - y

1