Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Core%20Java%20Interview%20Questions%20and%20Answers

Question: How can I swap two variables without using a third variable?
Answer: Add two variables and assign the value into First variable. Subtract the Second value with the result Value. and assign to Second variable. Subtract the Result of First Variable With Result of Second Variable and Assign to First Variable.

Example:
int a=5,b=10;a=a+b; b=a-b; a=a-b;
Is it helpful? Yes No

Most helpful rated by users:

©2024 WithoutBook