Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9233529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T06:34:30+00:00 2026-06-18T06:34:30+00:00

I have been asked to Write a function that swaps two integers(I am not

  • 0

I have been asked to “Write a function that swaps two integers(I am not allowed to use arithmetic or Boolean operators for this) and returns the result”
Unfortunately I have encountered a slight problem. I think I have managed to swap the integers using the XOR algorithm that was suggested but I am not to sure how to return the values. I am quite poor at programming but I hope I have explained this sufficiently enough.

Here is the code so far:

static void Main(string[] args)
{
    //numberSwap?(int number1, int number2)
}

public int numberSwap(int number1, int number2)
{
    number1 ^= number2;
    number2 ^= number1;//I think this is correct
    number1 ^= number2;

    int result = number1, number2;
    return result;// I think I may have this wrong
}

as mentioned above I think that I may have the result assignment and return wrong as well as the called function.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T06:34:31+00:00Added an answer on June 18, 2026 at 6:34 am

    The reason the number didn’t got swapped because you passed the parameter by value, you were supposed to pass the parameter by reference


    Passing parameter By Value : create a copy of the variable that is sent to the parameter.

    Passing parameter By Reference modifies the parameter that is passed, and does not create any copy of the variable.


    Your function logic is correct the only tiny thing you missed was passing it As Reference

    public void numberSwap(ref int number1, ref int number2)
    {
        number1 ^= number2;
        number2 ^= number1;
        number1 ^= number2;
    }
    

    and the call to function must be like :

    static void Main(string[] args)
    {
        int n1 = 5, n2 = 10;
        numberSwap(ref n1, ref n2)
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been asked to write a function that returns the first non-whitespace character
I have been asked to write a script that pulls the latest code from
I have been asked to write an application that is going to act as
I've been asked to write a permutation function that uses recursion. The only parameter
Background I have been asked to write a script that will create a vertical
I have been asked to write a java program on linux platform. According to
I have been asked to write a program using python for an assignment. I
I have been asked to write a compliment website/service for an iPhone app. The
I have been asked in an interview to write a SQL query which fetches
I have been asked to improve the memory efficiency of an application that is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.