Back to Browse

Swap two integers without using temp/third variable - Java Interview Questions -8

47.9K views
Dec 3, 2017
9:26

Swap two integers without using temp/third variable: Method 1 (Using Arithmetic Operators): int x = 10, y = 5; // Code to swap 'x' and 'y' x = x + y; // x now becomes 15 y = x - y; // y becomes 10 x = x - y; // x becomes 5 Multiplication and division can also be used for swapping: x = x * y; // x now becomes 50 y = x / y; // y becomes 10 x = x / y; // x becomes 5 Method 2 (Using Bitwise XOR): x = x ^ y; // x now becomes 15 (1111) y = x ^ y; // y becomes 10 (1010) x = x ^ y; // x becomes 5 (0101) =================================================== Subscribe to this channel, and press bell icon to get some interesting videos on Selenium and Automation: https://www.youtube.com/c/Naveen%20AutomationLabs?sub_confirmation=1 Follow me on my Facebook Page: https://www.facebook.com/groups/naveenqtpexpert/ Let's join our Automation community for some amazing knowledge sharing and group discussion: https://t.me/joinchat/COJqZQ4enmEt4JACKLNLUg Subscribe to this channel, and press bell icon to get some interesting videos on Selenium and Automation: https://www.youtube.com/c/Naveen%20AutomationLabs?sub_confirmation=1 Follow me on my Facebook Page: https://www.facebook.com/groups/naveenqtpexpert/ Let's join our Automation community for some amazing knowledge sharing and group discussion on Telegram: https://t.me/joinchat/COJqZUPB02r5sB73YMdXEw Paid courses (Recorded) videos: Java & Selenium Course: http://www.naveenautomationlabs.com/p/course-content-selenium-webdriver-is.html API Course: http://www.naveenautomationlabs.com/p/syllabus-course-content-manual-testing.html ➡️Get Our Courses✔️ 📗 Get My Paid Courses at Paid courses (Recorded) videos: Java & Selenium Course: http://www.naveenautomationlabs.com/p/course-content-selenium-webdriver-is.html API Course: http://www.naveenautomationlabs.com/p/syllabus-course-content-manual-testing.html ------------------------------- ✔️SOCIAL NETWORKS Facebook: https://www.facebook.com/groups/naveenqtpexpert/ Twitter: https://twitter.com/naveenkhunteta Blog: http://www.naveenautomationlabs.com -------------------------------- Support My Channel✔️Or Buy Me A Coffee Paypal: https://paypal.me/naveenkhunteta Google Pay: [email protected] -------------------------------- ✔️Thanks for watching! देखने के लिए धन्यवाद Благодаря за гледането 感谢您观看 Merci d'avoir regardé Grazie per la visione Gracias por ver شكرا للمشاهدة

Download

1 formats

Video Formats

360pmp48.0 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

Swap two integers without using temp/third variable - Java Interview Questions -8 | NatokHD