employer cover photo
employer logo

NetSuite Interview Question

Given two variables with integer values, write a code which swaps values of these variables without using third variable.

Interview Answer

Anonymous

Aug 13, 2015

a = a + b; b = a - b; a = a - b;