without using arthematic operation ,how can you write the
logic for adding/substraction/multiplication?

Answers were Sorted based on User's Feedback



without using arthematic operation ,how can you write the logic for adding/substraction/multiplica..

Answer / sumalatha

By using bitwise operators, we can implement addition,
subtraction and multiplication operations.

Is This Answer Correct ?    6 Yes 1 No

without using arthematic operation ,how can you write the logic for adding/substraction/multiplica..

Answer / madhusmita pal

using logical operator AND(^)OR(||)and XOR(-).

Is This Answer Correct ?    7 Yes 3 No

without using arthematic operation ,how can you write the logic for adding/substraction/multiplica..

Answer / sankar

Without using arthematic operation adding two numbers:

#include<stdio.h>
int main()
{
int a=5,b=6;
while(b)
{
a=a^b;
b=(a^b)&b;
b=b<<1;
}
printf("The sum of a and b is: %d\n",a);
return 0;
}

Is This Answer Correct ?    1 Yes 0 No

without using arthematic operation ,how can you write the logic for adding/substraction/multiplica..

Answer / xxx

ok without using arthematic operation? give a google search.
am also searching for that.

Is This Answer Correct ?    1 Yes 1 No

without using arthematic operation ,how can you write the logic for adding/substraction/multiplica..

Answer / upendra

plz send the answer for this quary

Is This Answer Correct ?    0 Yes 1 No

without using arthematic operation ,how can you write the logic for adding/substraction/multiplica..

Answer / ashwinkumar

int a = 10;
int b = 5;
int sum = BigInteger.valueOf(a).add(BigInteger.valueOf(b)).intValue();
int sum1 = BigInteger.valueOf(a).subtract(BigInteger.valueOf(b)).intValue();
int sum2 = BigInteger.valueOf(a).multiply(BigInteger.valueOf(b)).intValue();

Is This Answer Correct ?    2 Yes 3 No

without using arthematic operation ,how can you write the logic for adding/substraction/multiplica..

Answer / raaaj

visit nataraz.blogspot.com for the answer.you will get a lot of tricky question in future

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Core Java Interview Questions

How can two threads be made to communicate with each other?

3 Answers   HCL,


There are 2 classes, 1 LandAnimal and another WaterAnimal. There is another class Animal which wants to have the properties of both LandAnimal and WaterAnimal. How will you design this situation?

6 Answers   KPIT,


What is fundamental datatype?

0 Answers  


Can we rethrow the same exception from catch handler?

0 Answers  


Is singleton a bad practice?

0 Answers  






how to create multithreaded program? Explain different ways of using thread? When a thread is created and started, what is its initial state? : Java thread

0 Answers  


What are the different ways of implementing thread? Which one is more advantageous?

0 Answers  


Is multiple inheritance allowed in Java? Why ?

7 Answers  


How an object is serialized in java?

0 Answers  


Write a program to solve producer consumer problem in java?

0 Answers  


Difference between serialization and deserialization in java?

0 Answers  


What is interface and its use?

8 Answers   HCL,


Categories