Number of Bit Flips Problem Statement
Ninja is practicing binary representations and stumbled upon an interesting problem. Given two numbers 'A' and 'B', you are required to determine how many bits need to be flipped in 'B' to convert it to 'A'.
Help Ninja by finding the number of bit flips required.
Input:
T // an integer representing the number of test cases.
For each test case, two integers A and B are provided.
Output:
Output the number of bit flips required for each test case on a new line.
Example:
Input:
A = 13, B = 7
Output:
2
Explanation:
The binary representation of A is 1101 and B is 0111. Two bits differ between these numbers, hence the number of flips needed is 2.
Constraints:
1 <= T <= 10
1 <= A, B <= 10^9
- Time limit: 1 sec

AnswerBot
4mo
Calculate the number of bit flips required to convert one number to another in binary representation.
Convert both numbers to binary representation
Count the number of differing bits between the two num...read more
Help your peers!
Add answer anonymously...
Info Edge Senior Software Engineer interview questions & answers
A Senior Software Engineer was asked 2mo agoQ. Given two strings s and t, return the minimum window in s which will contain all...read more
A Senior Software Engineer was asked 11mo agoQ. Describe how you would build an MVC architecture.
A Senior Software Engineer was asked Q. Given a sorted array of integers nums and an integer target, write a function to...read more
Popular interview questions of Senior Software Engineer
A Senior Software Engineer was asked 2mo agoQ1. Given two strings s and t, return the minimum window in s which will contain all...read more
A Senior Software Engineer was asked 11mo agoQ2. Describe how you would build an MVC architecture.
A Senior Software Engineer was asked Q3. Given a sorted array of integers nums and an integer target, write a function to...read more
>
Info Edge Senior Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

