int x=6; int y=9; x=y; System. out.println(x); | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

int x=6; int y=9; x=y; System. out.println(x);

Please help me understand the concept of swapping. I am not able to understand how to figure out the answer??

6th Aug 2019, 4:34 PM
Khushi Puri
Khushi Puri - avatar
10 Answers
+ 20
Khushi Puri Output for current code will be 9 not 6, check the quiz again if its the same then go to the Challenge again & report the quiz for 'Wrong Answer' There is no case of swapping of variable value, instead we are changing value in x from 6 to 9.
6th Aug 2019, 5:35 PM
Gaurav Agrawal
Gaurav Agrawal - avatar
+ 13
You can swap two numbers without using a temporary or third variable if you can store the sum of numbers in one number and then minus the sum with other number: a = 3; b = 5; a = a + b;  // 8 b = a - b; // 3 a = a - b; // 5 a = a + b; b = a - b;  // actually (a + b) - (b), so now b is equal to a a = a - b;  // (a + b) - (a), now a is equal to b now you have a = 5 and b = 3, so numbers are swapped without using a third or temp variable.
6th Aug 2019, 6:06 PM
Danijel Ivanović
Danijel Ivanović - avatar
+ 3
Swapping basically means to interchange the values of 2 variable. For eg. if x = 2 and y = 3 then after swapping the values will be x = 3 and y = 2. For swapping two variable you can either use inbuilt swap method or you can use a temporary variable like this:- int x,y,z; x=2; y=3; z=x; x=y; y=z; Here, value of x will be stored in z, value of y in x and then value of z will be stored in y which was actually having the value of x. So basically now x will store value of y and vice versa.
6th Aug 2019, 4:49 PM
Chetali Shah
Chetali Shah - avatar
+ 3
Though neither of these codes are java the concept is the same https://code.sololearn.com/wUK6ZD2GAgD6/?ref=app https://code.sololearn.com/cVZzH1BSKAwj/?ref=app
6th Aug 2019, 6:55 PM
BroFar
BroFar - avatar
+ 2
So output should be 9???
6th Aug 2019, 4:54 PM
Khushi Puri
Khushi Puri - avatar
+ 2
Yes, in this case, it'll be 9.
6th Aug 2019, 4:56 PM
Chetali Shah
Chetali Shah - avatar
+ 2
I encountered this question in a challenge.There it shows the output to be 6.I don't understand the reason for this.
6th Aug 2019, 5:03 PM
Khushi Puri
Khushi Puri - avatar
+ 2
Answer is 9....value of x is getting overriden n no swapping occurs
7th Aug 2019, 3:21 PM
Parna Maji🇮🇳
Parna Maji🇮🇳 - avatar
+ 2
What does it mean -"value of x is getting overridden ..... "????
7th Aug 2019, 3:24 PM
Khushi Puri
Khushi Puri - avatar
0
ye yei
10th Aug 2019, 6:09 AM
Sherwin Relagio Dela Cruz
Sherwin Relagio Dela Cruz - avatar