in Education by
write algorithm and flowchart the inputs two numbers swaps these values without using third variable Select the correct answer from above options

1 Answer

0 votes
by
 
Best answer
a, b = 69, 999 print(a, b) a, b = b, a print(a, b)

Related questions

0 votes
    Write an algorithm and draw a flowchart to print prime numbers from 1 to 50 Select the correct answer from above options...
asked Dec 10, 2021 in Education by JackTerrance
0 votes
    Write an algorithm and flowchart to find perimeter of rectangle and psuedocode of it’s Select the correct answer from above options...
asked Dec 31, 2021 in Education by JackTerrance
0 votes
    2 Write an algorithm to input two numbers and find their sum and difference Select the correct answer from above options...
asked Nov 28, 2021 in Education by JackTerrance
0 votes
    write a program in c++ to interchange 2 values without the 3rd variable. Select the correct answer from above options...
asked Nov 26, 2021 in Education by JackTerrance
0 votes
    2.Flowchart is diagrammatic representation of O Data types O Memory Locations O Algorithm O Keywords Select the correct answer from above options...
asked Dec 25, 2021 in Education by JackTerrance
0 votes
    Write a program in Java to find the area and perimeter of a right- angled triangle by using function ... inputs. angled triangle Select the correct answer from above options...
asked Dec 7, 2021 in Education by JackTerrance
0 votes
    Write a program in Java to find the area and perimeter of a right- angled triangle by using function ... inputs. angled triangle Select the correct answer from above options...
asked Dec 5, 2021 in Education by JackTerrance
0 votes
    Write a program in Java to find the area and perimeter of a right- angled triangle by using function ... inputs. angled triangle Select the correct answer from above options...
asked Nov 26, 2021 in Education by JackTerrance
0 votes
    Write a function that interchange and prints the value of two integers A and B without using any extra variable in php. Select the correct answer from above options...
asked Dec 23, 2021 in Education by JackTerrance
0 votes
    write an alogithum to find out simple interest . Flowchart Select the correct answer from above options...
asked Nov 27, 2021 in Education by JackTerrance
0 votes
    Write an algorithm to accept radius of a circle from user, and display area of the circle using the formula: area ... x radius x radius Select the correct answer from above options...
asked Nov 27, 2021 in Education by JackTerrance
0 votes
    write a program that inputs a strig and then print the string, equal to number of times its length Select the correct answer from above options...
asked Nov 30, 2021 in Education by JackTerrance
0 votes
    Algorithm To find out the sum of first 100 even numbers. (only in steps) Select the correct answer from above options...
asked Dec 20, 2021 in Education by JackTerrance
0 votes
    Write a program to accept string from user and search a given character from string without using find() function Select the correct answer from above options...
asked Nov 30, 2021 in Education by JackTerrance
...