// C++ code to swap using XOR #include using namespace std; int main() { int x = 10, y = 5; // Code to swap 'x' (1010) and 'y' (0101) x = x ^ y; // x now becomes 15 (1111) y = x ^ y; // y becomes 10 (1010) x = x ^ y; // x becomes 5 (0101) cout
@nagasaiprajith230214 сағат бұрын
This is using addition and subtraction, where is xor method 😢
@Krishnakur614413 сағат бұрын
❤
@dayashankarlakhotia49439 сағат бұрын
I have no money to enrolled in your course if you enrolled free ?🎉❤
@kaushalvaibhavaraaja66494 сағат бұрын
@@nagasaiprajith2302x^y ^ is xor method.
@abhudaysrivastava8437Сағат бұрын
This bitwise or
@sameersawal2810 сағат бұрын
A,b=b,A in python
@saurav_biswas77 сағат бұрын
But this is not in Option 😂😂
@jasjotsingh880714 сағат бұрын
Hi maam data analyst aur data scientist ke liye konsi skill chaiye hoti h
@GeeksforGeeksVideos13 сағат бұрын
Hi Data Analyst Skills: Excel, SQL, Tableau/Power BI, basic statistics, and Python/R knowledge. Strong communication and analytical thinking are key. Data Scientist Skills: Advanced Python/R, ML, big data tools, deep learning, and strong math/statistics foundation. Domain expertise and data wrangling are a plus.
@jasjotsingh880713 сағат бұрын
Thank you ma'am for reply
@CodeToCoder-q5z4 сағат бұрын
Mam please check this code it is right or not A=10 B=5 A=A/B //A=2 B=A*B //B=10 A=B/A //A=5
@kml_fitness728414 сағат бұрын
KZbin kholte hi aap dikhte ho 😂
@tgayush142412 сағат бұрын
Same 😂😂😂
@kirangowda35082 сағат бұрын
A=a+b B=a-b A=a-b
@eswarprasad24362 сағат бұрын
Maam i want to placed at product base company,i am btech 2nd year can u give roadmap 😊
@Heyy3972 сағат бұрын
Yeah please
@tgayush142412 сағат бұрын
Ooo yeahh xor for swapping
@datapractitioner14 сағат бұрын
Python: a, b = b, a 😂😂😂
@vishalp2.012 сағат бұрын
Interviewer :- can try with different approache😂
@SiddharthYarde2 сағат бұрын
a=2, b=3 b=a+b a=b-a b=b-a Is it?
@ayushshaw16105 сағат бұрын
If possible then please give the solution in java also