Cisco Systems Interview Question
368 Interview Reviews |
Back to all Cisco Systems Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Software Engineer I at Cisco Systems:
How would you swap two variables without a third holding variable?
| Tags: | technical, programming, basic See more , See less 8 |
See more for this Cisco Systems Software Engineer I Interview
Helpful Question?
Yes |
No
Inappropriate?
Answers & Comments (2)
a = a xor b
b = a xor b
a = a xor b
Helpful Answer?
Yes |
No
Inappropriate?
To comment on this
question,
Sign In with Facebook or
Sign Up



2 of 2 people found this helpful
by Interview Candidate:
B=A-B;
A-=B;